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 8e6f36c commit 76072a6Copy full SHA for 76072a6
src/unix/linux_like/linux/musl/mod.rs
@@ -148,10 +148,10 @@ s! {
148
// FIXME(union): C implementation uses unions
149
pub struct siginfo_t {
150
pub si_signo: c_int,
151
- #[cfg(not(target_arch = "mips"))]
+ #[cfg(not(any(target_arch = "mips", target_arch = "mips64")))]
152
pub si_errno: c_int,
153
pub si_code: c_int,
154
- #[cfg(target_arch = "mips")]
+ #[cfg(any(target_arch = "mips", target_arch = "mips64"))]
155
156
#[doc(hidden)]
157
#[deprecated(
0 commit comments