blob: 5f9a735db085ebf816113a986ccc3c554d468989 (
plain)
1
2
3
4
5
6
7
8
9
10
|
//! WASI-specific extensions to general I/O primitives.
#![stable(feature = "io_safety_wasi", since = "1.65.0")]
#[stable(feature = "io_safety_wasi", since = "1.65.0")]
pub use crate::os::fd::*;
// Tests for this module
#[cfg(test)]
mod tests;
|