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