16 lines
270 B
Rust
16 lines
270 B
Rust
|
|
#[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::*;
|