summary refs log tree commit diff
path: root/library/std/src/sys/pal/wasi/env.rs
blob: 8d44498267360db91bc3ddeb3d19ddfb1dd9573e (plain)
1
2
3
4
5
6
7
8
9
10
11
#![forbid(unsafe_op_in_unsafe_fn)]

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";
}