tempfile/file/imp/
mod.rs
1#[cfg_attr(any(unix, target_os = "redox", target_os = "wasi"), path = "unix.rs")]
2#[cfg_attr(windows, path = "windows.rs")]
3#[cfg_attr(
4 not(any(unix, target_os = "redox", target_os = "wasi", windows)),
5 path = "other.rs"
6)]
7mod platform;
8
9pub use self::platform::*;