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 4c96110 commit d266906Copy full SHA for d266906
src/unix/linux_like/linux/musl/mod.rs
@@ -157,10 +157,10 @@ s! {
157
// FIXME(union): C implementation uses unions
158
pub struct siginfo_t {
159
pub si_signo: c_int,
160
- #[cfg(not(target_arch = "mips"))]
+ #[cfg(not(any(target_arch = "mips", target_arch = "mips64")))]
161
pub si_errno: c_int,
162
pub si_code: c_int,
163
- #[cfg(target_arch = "mips")]
+ #[cfg(any(target_arch = "mips", target_arch = "mips64"))]
164
165
#[doc(hidden)]
166
#[deprecated(
0 commit comments