summaryrefslogtreecommitdiffstats
path: root/library/std/src/os/wasi/io/mod.rs
blob: 4f5cfbf9a3c4c1608792f850782243c1933c8100 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//! WASI-specific extensions to general I/O primitives.

#![deny(unsafe_op_in_unsafe_fn)]
#![stable(feature = "io_safety_wasi", since = "1.65.0")]

mod fd;
mod raw;

#[stable(feature = "io_safety_wasi", since = "1.65.0")]
pub use fd::*;
#[stable(feature = "io_safety_wasi", since = "1.65.0")]
pub use raw::*;