File tree Expand file tree Collapse file tree 11 files changed +40
-8
lines changed Expand file tree Collapse file tree 11 files changed +40
-8
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ pub type clock_t = ::c_long;
6
6
pub type time_t = :: c_long ;
7
7
pub type suseconds_t = :: c_long ;
8
8
pub type off_t = :: c_long ;
9
+ pub type loff_t = :: c_longlong ;
9
10
pub type blkcnt_t = :: c_ulong ;
10
11
pub type blksize_t = :: c_ulong ;
11
12
pub type nlink_t = u32 ;
Original file line number Diff line number Diff line change
1
+ pub type loff_t = :: c_longlong ;
2
+
1
3
pub const CLONE_NEWCGROUP : :: c_int = 0x02000000 ;
2
4
3
5
pub const SFD_CLOEXEC : :: c_int = 0x080000 ;
Original file line number Diff line number Diff line change 1
1
pub type c_char = u8 ;
2
2
pub type wchar_t = u32 ;
3
+ pub type loff_t = :: c_longlong ;
4
+ pub type ino_t = u64 ;
5
+ pub type off_t = i64 ;
6
+ pub type blkcnt_t = i64 ;
7
+ pub type blksize_t = c_long ;
8
+ pub type fsblkcnt_t = :: c_ulonglong ;
9
+ pub type fsfilcnt_t = :: c_ulonglong ;
3
10
4
11
s ! {
5
12
pub struct stat {
Original file line number Diff line number Diff line change 1
1
pub type c_char = i8 ;
2
2
pub type wchar_t = i32 ;
3
+ pub type loff_t = i32 ;
4
+ pub type ino_t = u32 ;
5
+ pub type off_t = i32 ;
6
+ pub type blkcnt_t = i32 ;
7
+ pub type blksize_t = i32 ;
8
+ pub type fsblkcnt_t = u32 ;
9
+ pub type fsfilcnt_t = u32 ;
3
10
4
11
s ! {
5
12
pub struct stat {
Original file line number Diff line number Diff line change 1
1
pub type c_char = i8 ;
2
2
pub type wchar_t = :: c_int ;
3
+ pub type loff_t = :: c_longlong ;
4
+ pub type ino_t = u64 ;
5
+ pub type off_t = i64 ;
6
+ pub type blkcnt_t = i64 ;
7
+ pub type blksize_t = c_long ;
8
+ pub type fsblkcnt_t = :: c_ulonglong ;
9
+ pub type fsfilcnt_t = :: c_ulonglong ;
3
10
4
11
s ! {
5
12
pub struct stat {
Original file line number Diff line number Diff line change 1
1
pub type c_char = i8 ;
2
2
pub type wchar_t = i32 ;
3
+ pub type loff_t = :: c_longlong ;
4
+ pub type ino_t = u64 ;
5
+ pub type off_t = i64 ;
6
+ pub type blkcnt_t = i64 ;
7
+ pub type blksize_t = c_long ;
8
+ pub type fsblkcnt_t = :: c_ulonglong ;
9
+ pub type fsfilcnt_t = :: c_ulonglong ;
3
10
4
11
s ! {
5
12
pub struct stat {
Original file line number Diff line number Diff line change @@ -2,6 +2,13 @@ pub type wchar_t = i32;
2
2
pub type c_long = i64 ;
3
3
pub type c_ulong = u64 ;
4
4
pub type nlink_t = u64 ;
5
+ pub type loff_t = :: c_longlong ;
6
+ pub type ino_t = u64 ;
7
+ pub type off_t = i64 ;
8
+ pub type blkcnt_t = i64 ;
9
+ pub type blksize_t = c_long ;
10
+ pub type fsblkcnt_t = :: c_ulonglong ;
11
+ pub type fsfilcnt_t = :: c_ulonglong ;
5
12
6
13
s ! {
7
14
pub struct stat {
Original file line number Diff line number Diff line change 1
1
pub type clock_t = c_long ;
2
2
pub type time_t = c_long ;
3
3
pub type suseconds_t = c_long ;
4
- pub type ino_t = u64 ;
5
- pub type off_t = i64 ;
6
- pub type blkcnt_t = i64 ;
7
-
8
- pub type blksize_t = c_long ;
9
- pub type fsblkcnt_t = :: c_ulonglong ;
10
- pub type fsfilcnt_t = :: c_ulonglong ;
11
4
pub type rlim_t = :: c_ulonglong ;
12
5
13
6
s ! {
Original file line number Diff line number Diff line change
1
+ pub type loff_t = :: c_longlong ;
1
2
pub type fsblkcnt_t = :: c_ulong ;
2
3
pub type fsfilcnt_t = :: c_ulong ;
3
4
pub type rlim_t = c_ulong ;
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ pub type fsfilcnt_t = u64;
8
8
pub type ino_t = u64 ;
9
9
pub type nlink_t = u64 ;
10
10
pub type off_t = i64 ;
11
+ pub type loff_t = :: c_longlong ;
11
12
pub type rlim_t = u64 ;
12
13
pub type suseconds_t = i64 ;
13
14
pub type time_t = i64 ;
You can’t perform that action at this time.
0 commit comments