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 f46da5f commit aa84263Copy full SHA for aa84263
src/sys/ioctl/mod.rs
@@ -227,11 +227,21 @@
227
//! ```
228
use cfg_if::cfg_if;
229
230
-#[cfg(any(linux_android, target_os = "fuchsia", target_os = "redox", target_os = "cygwin"))]
+#[cfg(any(
231
+ linux_android,
232
+ target_os = "fuchsia",
233
+ target_os = "redox",
234
+ target_os = "cygwin"
235
+))]
236
#[macro_use]
237
mod linux;
238
239
240
241
242
243
244
245
pub use self::linux::*;
246
247
#[cfg(any(bsd, solarish, target_os = "haiku",))]
0 commit comments