mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-17 14:13:24 +03:00
5e14f760c5
Fixes #4656
8 lines
118 B
Rust
8 lines
118 B
Rust
extern crate cfg_if;
|
|
|
|
cfg_if::cfg_if! {
|
|
if #[cfg(target_family = "unix")] {
|
|
mod format_me_please;
|
|
}
|
|
}
|