1//! OS-specific functionality. 2 3#[cfg(not(windows))] 4pub mod rustix; 5#[cfg(windows)] 6pub mod windows;