about summary refs log tree commit diff
path: root/src/libstd/sys/wasi/env.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstd/sys/wasi/env.rs')
-rw-r--r--src/libstd/sys/wasi/env.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libstd/sys/wasi/env.rs b/src/libstd/sys/wasi/env.rs
new file mode 100644
index 00000000000..730e356d7fe
--- /dev/null
+++ b/src/libstd/sys/wasi/env.rs
@@ -0,0 +1,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";
+}