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