#![cfg(not(windows))]
#![cfg_attr(target_os = "wasi", feature(wasi_ext))]
#![cfg_attr(io_lifetimes_use_std, feature(io_safety))]
#[cfg(not(target_os = "wasi"))]
#[macro_use]
mod weak;
mod auxv;
mod cpu_set;
#[cfg(not(target_os = "wasi"))] mod id;
#[cfg(any(target_os = "android", target_os = "linux"))]
mod membarrier;
#[cfg(not(any(target_os = "fuchsia", target_os = "wasi")))] mod priority;
#[cfg(not(target_os = "wasi"))]
mod rlimit;
mod sched_yield;
#[cfg(not(target_os = "wasi"))] mod uname;
#[cfg(not(target_os = "wasi"))] mod wait;
#[cfg(not(any(target_os = "redox", target_os = "wasi")))]
mod working_directory;