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 fad6e11 commit e20b517Copy full SHA for e20b517
src/unix/linux_like/linux/gnu/b32/mod.rs
@@ -28,6 +28,16 @@ cfg_if! {
28
pub type fsfilcnt_t = u64;
29
pub type rlim_t = u64;
30
pub type blksize_t = i64;
31
+ } else if #[cfg(gnu_time64_abi)] {
32
+ pub type time_t = i64;
33
+ pub type suseconds_t = i32;
34
+ pub type ino_t = u64;
35
+ pub type off_t = i64;
36
+ pub type blkcnt_t = i64;
37
+ pub type fsblkcnt_t = u64;
38
+ pub type fsfilcnt_t = u64;
39
+ pub type rlim_t = u64;
40
+ pub type blksize_t = i32;
41
} else {
42
pub type time_t = i32;
43
pub type suseconds_t = i32;
0 commit comments