Skip to content

Commit aa84263

Browse files
format
1 parent f46da5f commit aa84263

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

src/sys/ioctl/mod.rs

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,21 @@
227227
//! ```
228228
use cfg_if::cfg_if;
229229

230-
#[cfg(any(linux_android, target_os = "fuchsia", target_os = "redox", target_os = "cygwin"))]
230+
#[cfg(any(
231+
linux_android,
232+
target_os = "fuchsia",
233+
target_os = "redox",
234+
target_os = "cygwin"
235+
))]
231236
#[macro_use]
232237
mod linux;
233238

234-
#[cfg(any(linux_android, target_os = "fuchsia", target_os = "redox", target_os = "cygwin"))]
239+
#[cfg(any(
240+
linux_android,
241+
target_os = "fuchsia",
242+
target_os = "redox",
243+
target_os = "cygwin"
244+
))]
235245
pub use self::linux::*;
236246

237247
#[cfg(any(bsd, solarish, target_os = "haiku",))]

0 commit comments

Comments
 (0)