1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
pub use self::imp::*; #[cfg(unix)] #[path = "unix/mod.rs"] mod imp; #[cfg(windows)] #[path = "windows/mod.rs"] mod imp; #[cfg(all(dox, not(windows)))] #[path = "windows/c.rs"] mod c;