1 2 3 4 5 6 7 8 9 10 11
#![no_std] #[cfg(any(unix, feature = "unsafe_impl"))] mod unix; #[cfg(windows)] mod win32; #[cfg(any(unix, feature = "unsafe_impl"))] pub use unix::*; #[cfg(windows)] pub use win32::*;