#[macro_use]
mod arch;
mod conv;
mod elf;
mod reg;
#[cfg(any(feature = "time", target_arch = "x86"))]
mod vdso;
#[cfg(any(feature = "time", target_arch = "x86"))]
mod vdso_wrappers;
#[cfg(feature = "fs")]
pub(crate) mod fs;
pub(crate) mod io;
#[cfg(feature = "io_uring")]
pub(crate) mod io_uring;
#[cfg(feature = "mm")]
pub(crate) mod mm;
#[cfg(feature = "net")]
pub(crate) mod net;
#[cfg(any(
feature = "param",
feature = "runtime",
feature = "time",
target_arch = "x86",
))]
pub(crate) mod param;
pub(crate) mod process;
#[cfg(feature = "rand")]
pub(crate) mod rand;
#[cfg(feature = "runtime")]
pub(crate) mod runtime;
#[cfg(feature = "termios")]
pub(crate) mod termios;
#[cfg(feature = "thread")]
pub(crate) mod thread;
pub(crate) mod time;
#[cfg(feature = "std")]
pub(crate) mod fd {
pub use io_lifetimes::*;
#[allow(unused_imports)]
pub(crate) use std::os::unix::io::RawFd as LibcFd;
pub use std::os::unix::io::{AsRawFd, FromRawFd, IntoRawFd, RawFd};
}
#[cfg(not(feature = "std"))]
pub(crate) use crate::io::fd;
pub(crate) mod c;