summary refs log tree commit diff
path: root/library/std/src/os/wasi/ffi.rs
blob: 17e12a395a67047529abcaafb412c76fa556911c (plain)
1
2
3
4
5
6
7
8
9
//! WASI-specific extension to the primitives in the `std::ffi` module

#![stable(feature = "rust1", since = "1.0.0")]

#[path = "../unix/ffi/os_str.rs"]
mod os_str;

#[stable(feature = "rust1", since = "1.0.0")]
pub use self::os_str::{OsStrExt, OsStringExt};