• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #![stable(feature = "rust1", since = "1.0.0")]
2 
3 #[allow(unused_extern_crates)]
4 #[stable(feature = "rust1", since = "1.0.0")]
5 pub extern crate hermit_abi as abi;
6 
7 pub mod ffi;
8 pub mod io;
9 
10 /// A prelude for conveniently writing platform-specific code.
11 ///
12 /// Includes all extension traits, and some important type definitions.
13 #[stable(feature = "rust1", since = "1.0.0")]
14 pub mod prelude {
15     #[doc(no_inline)]
16     #[stable(feature = "rust1", since = "1.0.0")]
17     pub use super::ffi::{OsStrExt, OsStringExt};
18 }
19