1#[cfg(unix)]
2pub mod unix;
3
4#[cfg(windows)]
5pub mod windows;
6
7#[cfg(target_os = "freebsd")]
8pub mod freebsd;
9
10#[cfg(any(target_os = "android", target_os = "linux"))]
11pub mod linux;
12
13#[cfg(any(target_os = "macos", target_os = "ios"))]
14pub mod macos;