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 | )] |
7 | mod platform; |
8 | |
9 | pub use self::platform::*; |
10 |