File tree 3 files changed +2
-1
lines changed
src/unix/notbsd/linux/musl
3 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 1
1
pub type c_long = i32 ;
2
2
pub type c_ulong = u32 ;
3
+ pub type nlink_t = u32 ;
3
4
4
5
pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 32 ;
5
6
pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 24 ;
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ pub type c_char = i8;
2
2
pub type wchar_t = i32 ;
3
3
pub type c_long = i64 ;
4
4
pub type c_ulong = u64 ;
5
+ pub type nlink_t = u64 ;
5
6
6
7
pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56 ;
7
8
pub const __SIZEOF_PTHREAD_MUTEX_T: usize = 40 ;
Original file line number Diff line number Diff line change @@ -5,7 +5,6 @@ pub type ino_t = u64;
5
5
pub type off_t = i64 ;
6
6
pub type blkcnt_t = i64 ;
7
7
8
- pub type nlink_t = usize ;
9
8
pub type blksize_t = c_long ;
10
9
pub type fsblkcnt_t = :: c_ulonglong ;
11
10
pub type fsfilcnt_t = :: c_ulonglong ;
You can’t perform that action at this time.
0 commit comments