1 //! OS-specific functionality.
2 
3 // The std-library has a couple more platforms than just `unix` for which these apis
4 // are defined, but we're using just `unix` here. We can always expand later.
5 #[cfg(unix)]
6 /// Platform-specific extensions for Unix platforms.
7 pub mod unix;
8 
9 #[cfg(windows)]
10 /// Platform-specific extensions for Windows.
11 pub mod windows;
12