]> git.lizzy.rs Git - rust.git/blob - library/std/src/sys/vxworks/env.rs
Auto merge of #73265 - mark-i-m:mv-std, r=Mark-Simulacrum,mark-i-m
[rust.git] / library / std / src / sys / vxworks / env.rs
1 pub mod os {
2     pub const FAMILY: &str = "vxworks";
3     pub const OS: &str = "vxworks";
4     pub const DLL_PREFIX: &str = "lib";
5     pub const DLL_SUFFIX: &str = ".so";
6     pub const DLL_EXTENSION: &str = "so";
7     pub const EXE_SUFFIX: &str = "";
8     pub const EXE_EXTENSION: &str = "";
9 }