• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //! WASI-specific extensions to primitives in the [`std::ffi`] module
2 //!
3 //! [`std::ffi`]: crate::ffi
4 
5 #![stable(feature = "rust1", since = "1.0.0")]
6 
7 #[path = "../unix/ffi/os_str.rs"]
8 mod os_str;
9 
10 #[stable(feature = "rust1", since = "1.0.0")]
11 pub use self::os_str::{OsStrExt, OsStringExt};
12