1 #[cfg(unix)] 2 #[path = "unix.rs"] 3 mod sys; 4 5 #[cfg(windows)] 6 #[path = "windows.rs"] 7 mod sys; 8 9 pub use self::sys::*; 10