]> git.lizzy.rs Git - rust.git/blob - library/std/src/sys/wasm/env.rs
Add 'library/portable-simd/' from commit '1ce1c645cf27c4acdefe6ec8a11d1f0491954a99'
[rust.git] / library / std / src / sys / wasm / env.rs
1 pub mod os {
2     pub const FAMILY: &str = "";
3     pub const OS: &str = "";
4     pub const DLL_PREFIX: &str = "";
5     pub const DLL_SUFFIX: &str = ".wasm";
6     pub const DLL_EXTENSION: &str = "wasm";
7     pub const EXE_SUFFIX: &str = ".wasm";
8     pub const EXE_EXTENSION: &str = "wasm";
9 }