summaryrefslogtreecommitdiffstats
path: root/library/std/src/os/hermit/mod.rs
blob: 4657b545a1bc46b7a660fed2ff5f4a5964174e5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![stable(feature = "rust1", since = "1.0.0")]

pub mod ffi;

/// A prelude for conveniently writing platform-specific code.
///
/// Includes all extension traits, and some important type definitions.
#[stable(feature = "rust1", since = "1.0.0")]
pub mod prelude {
    #[doc(no_inline)]
    #[stable(feature = "rust1", since = "1.0.0")]
    pub use super::ffi::{OsStrExt, OsStringExt};
}