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