File tree Expand file tree Collapse file tree 3 files changed +2
-1
lines changed
src/unix/notbsd/linux/musl Expand file tree Collapse file tree 3 files changed +2
-1
lines changed Original file line number Diff line number Diff line change 11pub type c_long = i32 ;
22pub type c_ulong = u32 ;
3+ pub type nlink_t = u32 ;
34
45pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 32 ;
56pub 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;
22pub type wchar_t = i32 ;
33pub type c_long = i64 ;
44pub type c_ulong = u64 ;
5+ pub type nlink_t = u64 ;
56
67pub const __SIZEOF_PTHREAD_RWLOCK_T: usize = 56 ;
78pub 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;
55pub type off_t = i64 ;
66pub type blkcnt_t = i64 ;
77
8- pub type nlink_t = usize ;
98pub type blksize_t = c_long ;
109pub type fsblkcnt_t = :: c_ulonglong ;
1110pub type fsfilcnt_t = :: c_ulonglong ;
You can’t perform that action at this time.
0 commit comments