#[cfg(target_family="windows")] mod _m { pub const PATH_VAR_SEP: &str = ";"; pub const EXEC_EXT: &str = "exe"; } #[cfg(target_family="unix")] mod _m { pub const PATH_VAR_SEP: &str = ":"; pub const EXEC_EXT: &str = ""; } pub use _m::*;