about summary refs log tree commit diff
path: root/library/std/src/sys/pal
diff options
context:
space:
mode:
authorThalia Archibald <thalia@archibald.dev>2025-04-21 21:05:04 -0700
committerThalia Archibald <thalia@archibald.dev>2025-04-21 21:05:04 -0700
commitdfc8f02279ab13c81ab47cb875bc585adc0cdc6f (patch)
tree1d3e71618362f2d933593e0e6c9b76372fa1bc9f /library/std/src/sys/pal
parentd6c1e454aa8af5e7e59fbf5c4e7d3128d2f99582 (diff)
Move zkVM constants into `sys::env_consts`
I missed this in #139868. Its `mod` declaration was removed, but the
contents were not moved.
Diffstat (limited to 'library/std/src/sys/pal')
-rw-r--r--library/std/src/sys/pal/zkvm/env.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/library/std/src/sys/pal/zkvm/env.rs b/library/std/src/sys/pal/zkvm/env.rs
deleted file mode 100644
index b85153642b1..00000000000
--- a/library/std/src/sys/pal/zkvm/env.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-pub mod os {
-    pub const FAMILY: &str = "";
-    pub const OS: &str = "";
-    pub const DLL_PREFIX: &str = "";
-    pub const DLL_SUFFIX: &str = ".elf";
-    pub const DLL_EXTENSION: &str = "elf";
-    pub const EXE_SUFFIX: &str = ".elf";
-    pub const EXE_EXTENSION: &str = "elf";
-}