use cfg_if::cfg_if;
cfg_if! {
if #[cfg(any(target_os = "linux", target_os = "android"))] {
mod linux;
pub use self::linux::*;
} else if #[cfg(any(target_os = "macos",
target_os = "ios",
target_os = "freebsd",
target_os = "openbsd"))] {
mod bsd;
pub use self::bsd::*;
} else {
mod not_supported;
pub use self::not_supported::*;
}
}