Skip to content

Commit 843d302

Browse files
committed
Update unsigned type import.
1 parent f4af286 commit 843d302

27 files changed

+44
-28
lines changed

src/unix.f90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
! Author: Philipp Engel
77
! Licence: ISC
88
module unix
9-
use, intrinsic :: iso_c_binding
109
use :: unix_dirent
1110
use :: unix_errno
1211
use :: unix_fcntl

src/unix_dirent.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
! Author: Philipp Engel
44
! Licence: ISC
55
module unix_dirent
6-
use, intrinsic :: iso_c_binding
6+
use :: unix_types
77
implicit none
88
private
99

src/unix_errno.F90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33
! Author: Philipp Engel
44
! Licence: ISC
55
module unix_errno
6-
use, intrinsic :: iso_c_binding
6+
use :: unix_types
77
implicit none
8+
private
89

910
#if defined (__linux__)
1011

src/unix_fcntl.F90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
! Author: Philipp Engel
44
! Licence: ISC
55
module unix_fcntl
6-
use, intrinsic :: iso_c_binding
76
use :: unix_types
87
implicit none
98
private

src/unix_ftw.F90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
! Author: Philipp Engel
44
! Licence: ISC
55
module unix_ftw
6-
use, intrinsic :: iso_c_binding
6+
use :: unix_types
77
implicit none
88
private
99

src/unix_inet.F90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
! Author: Philipp Engel
44
! Licence: ISC
55
module unix_inet
6-
use, intrinsic :: iso_c_binding
76
use :: unix_types
87
implicit none
98
private

src/unix_ioctl.F90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
! Author: Philipp Engel
44
! Licence: ISC
55
module unix_ioctl
6-
use, intrinsic :: iso_c_binding
76
use :: unix_types
87
implicit none
98
private

src/unix_ipc.F90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
! Author: Philipp Engel
44
! Licence: ISC
55
module unix_ipc
6-
use, intrinsic :: iso_c_binding
76
use :: unix_types
87
implicit none
98
private

src/unix_mqueue.F90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
! Author: Philipp Engel
44
! Licence: ISC
55
module unix_mqueue
6-
use, intrinsic :: iso_c_binding
76
use :: unix_time
87
use :: unix_types
98
implicit none

src/unix_msg.F90

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
! Author: Philipp Engel
44
! Licence: ISC
55
module unix_msg
6-
use, intrinsic :: iso_c_binding
76
use :: unix_types
87
implicit none
98
private

0 commit comments

Comments
 (0)