1
2
3
4
5
6
7
//! OS-specific functionality.

#[cfg(unix)]
pub mod unix;

#[cfg(windows)]
pub mod windows;