We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7c13b9 commit 059b698Copy full SHA for 059b698
src/unix/linux_like/linux/gnu/b32/mod.rs
@@ -29,14 +29,14 @@ cfg_if! {
29
pub type rlim_t = u64;
30
pub type blksize_t = i64;
31
} else {
32
- pub type time_t = i32;
+ pub type time_t = i64;
33
pub type suseconds_t = i32;
34
- pub type ino_t = u32;
35
- pub type off_t = i32;
36
- pub type blkcnt_t = i32;
37
- pub type fsblkcnt_t = ::c_ulong;
38
- pub type fsfilcnt_t = ::c_ulong;
39
- pub type rlim_t = c_ulong;
+ pub type ino_t = u64;
+ pub type off_t = i64;
+ pub type blkcnt_t = i64;
+ pub type fsblkcnt_t = u64;
+ pub type fsfilcnt_t = u64;
+ pub type rlim_t = u64;
40
pub type blksize_t = i32;
41
}
42
0 commit comments