mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-02 06:28:20 +03:00
10 lines
342 B
Rust
10 lines
342 B
Rust
pub mod os {
|
|
pub const FAMILY: &'static str = "";
|
|
pub const OS: &'static str = "";
|
|
pub const DLL_PREFIX: &'static str = "";
|
|
pub const DLL_SUFFIX: &'static str = ".sgxs";
|
|
pub const DLL_EXTENSION: &'static str = "sgxs";
|
|
pub const EXE_SUFFIX: &'static str = ".sgxs";
|
|
pub const EXE_EXTENSION: &'static str = "sgxs";
|
|
}
|