//! OS-specific extensions.
//!//! These are not cross-platform and their usage should be `cfg`-wrapped.
#[cfg(unix)]pubmodunix;cfg_if::cfg_if!{if#[cfg(target_os ="linux")]{pubmodlinux;}elseif#[cfg(target_os ="macos")]{pubmodmacos;}elseif#[cfg(target_os ="windows")]{pubmodwindows;}}