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