#[cfg(any(
target_vendor = "apple",
target_os = "dragonfly",
target_os = "freebsd",
target_os = "netbsd",
target_os = "openbsd",
))]
pub(crate) mod bsd;
#[cfg(any(
target_os = "android",
target_os = "emscripten",
target_os = "l4re",
target_os = "linux",
))]
pub(crate) mod linux_like;
#[cfg(any(target_os = "dragonfly", target_os = "freebsd"))]
pub(crate) mod freebsd_like;
#[cfg(any(target_os = "netbsd", target_os = "openbsd"))]
pub(crate) mod netbsd_like;
#[cfg(any(target_os = "illumos", target_os = "solaris"))]
pub(crate) mod solarish;
#[cfg(target_family = "unix")]
pub(crate) mod posix;