summaryrefslogtreecommitdiffstats
path: root/library/std/src/os/hermit/io/mod.rs
blob: 524dfae0d63aeacac38da4f2c26b927eb7553962 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![stable(feature = "os_fd", since = "1.66.0")]

mod net;
#[path = "../../fd/owned.rs"]
mod owned;
#[path = "../../fd/raw.rs"]
mod raw;

// Export the types and traits for the public API.
#[stable(feature = "os_fd", since = "1.66.0")]
pub use owned::*;
#[stable(feature = "os_fd", since = "1.66.0")]
pub use raw::*;