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