#![cfg_attr(target_os = "wasi", feature(wasi_ext))]
#![cfg_attr(io_lifetimes_use_std, feature(io_safety))]
#[cfg(not(feature = "rustc-dep-of-std"))]
#[cfg(not(windows))]
mod dup2_to_replace_stdio;
#[cfg(not(windows))]
mod dup2_with;
#[cfg(not(feature = "rustc-dep-of-std"))] #[cfg(not(windows))]
mod epoll;
mod error;
#[cfg(not(windows))]
mod eventfd;
#[cfg(not(windows))]
mod from_into;
#[cfg(not(windows))]
mod isatty;
#[cfg(not(windows))]
#[cfg(not(target_os = "wasi"))]
mod mlock;
#[cfg(not(windows))]
mod mmap;
mod poll;
#[cfg(all(feature = "procfs", any(target_os = "android", target_os = "linux")))]
mod procfs;
#[cfg(not(windows))]
mod prot;
#[cfg(not(windows))]
#[cfg(not(target_os = "redox"))] #[cfg(not(target_os = "wasi"))] mod read_write;
#[cfg(any(target_os = "linux", target_os = "android"))]
mod seals;