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 e140bbb commit a6840b3Copy full SHA for a6840b3
src/unix/linux_like/linux/gnu/b32/mod.rs
@@ -29,6 +29,18 @@ cfg_if! {
29
pub type fsfilcnt_t = u64;
30
pub type rlim_t = u64;
31
pub type blksize_t = i64;
32
+ } else if #[cfg(gnu_time_bits64)] {
33
+ pub type time_t = i64;
34
+ pub type suseconds_t = i32;
35
+ type __ino_t = c_ulong;
36
+ type __ino64_t = u64;
37
+ pub type ino_t = __ino64_t;
38
+ pub type off_t = i64;
39
+ pub type blkcnt_t = i64;
40
+ pub type fsblkcnt_t = u64;
41
+ pub type fsfilcnt_t = u64;
42
+ pub type rlim_t = u64;
43
+ pub type blksize_t = i32;
44
} else if #[cfg(gnu_file_offset_bits64)] {
45
pub type time_t = i32;
46
pub type suseconds_t = i32;
0 commit comments