1pub mod unix_common; 2 3#[cfg(target_os = "macos")] 4pub mod macos; 5 6#[cfg(any(target_os = "linux", target_os = "android"))] 7pub mod linux_like;