]> git.lizzy.rs Git - rust.git/blob - library/std/src/sys/windows/env.rs
Add 'src/tools/miri/' from commit '75dd959a3a40eb5b4574f8d2e23aa6efbeb33573'
[rust.git] / library / std / src / sys / windows / env.rs
1 pub mod os {
2     pub const FAMILY: &str = "windows";
3     pub const OS: &str = "windows";
4     pub const DLL_PREFIX: &str = "";
5     pub const DLL_SUFFIX: &str = ".dll";
6     pub const DLL_EXTENSION: &str = "dll";
7     pub const EXE_SUFFIX: &str = ".exe";
8     pub const EXE_EXTENSION: &str = "exe";
9 }