summaryrefslogtreecommitdiffstats
path: root/library/std/src/sys/wasi/env.rs
blob: 730e356d7fe95f209d4f6122f3fa992adea33242 (plain)
1
2
3
4
5
6
7
8
9
pub mod os {
    pub const FAMILY: &str = "";
    pub const OS: &str = "";
    pub const DLL_PREFIX: &str = "";
    pub const DLL_SUFFIX: &str = ".wasm";
    pub const DLL_EXTENSION: &str = "wasm";
    pub const EXE_SUFFIX: &str = ".wasm";
    pub const EXE_EXTENSION: &str = "wasm";
}