summary refs log tree commit diff
path: root/src/libstd/sys/redox/env.rs
blob: bcc0e126b9dd3d8a9aaf5cec8f24c6959613b520 (plain)
1
2
3
4
5
6
7
8
9
pub mod os {
    pub const FAMILY: &str = "redox";
    pub const OS: &str = "redox";
    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 = "";
}