1#[cfg(unix)]
2mod unix;
3#[cfg(unix)]
4pub use unix::*;
5
6#[cfg(not(unix))]
7mod any;
8#[cfg(not(unix))]
9pub use any::*;
10