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 5bde4db commit f0f109bCopy full SHA for f0f109b
src/unix/mod.rs
@@ -72,10 +72,14 @@ s! {
72
#[cfg(all(not(target_env = "gnu"), not(target_os = "aix")))]
73
pub struct timespec {
74
pub tv_sec: time_t,
75
+ #[cfg(all(musl32_time64, target_endian = "big"))]
76
+ __pad0: Padding<u32>,
77
#[cfg(all(target_arch = "x86_64", target_pointer_width = "32"))]
78
pub tv_nsec: i64,
79
#[cfg(not(all(target_arch = "x86_64", target_pointer_width = "32")))]
80
pub tv_nsec: c_long,
81
+ #[cfg(all(musl32_time64, target_endian = "little"))]
82
83
}
84
85
pub struct rlimit {
0 commit comments