blob: fe1aedd58590bb4acdff4456213b9855d7c8cfc1 (
plain)
1
2
3
4
5
6
7
8
9
|
pub mod os {
pub const FAMILY: &str = "vxworks";
pub const OS: &str = "vxworks";
pub const DLL_PREFIX: &str = "lib";
pub const DLL_SUFFIX: &str = ".so";
pub const DLL_EXTENSION: &str = "so";
pub const EXE_SUFFIX: &str = "";
pub const EXE_EXTENSION: &str = "";
}
|