#![cfg_attr(not(any(feature = "std", test)), no_std)]
#![allow(unexpected_cfgs)] #[cfg(test)]
extern crate core;
pub use self::{arch::*, call::*, data::*, error::*, flag::*, io::*, number::*};
#[cfg(all(any(target_os = "none", target_os = "redox"), target_arch = "arm"))]
#[path = "arch/nonredox.rs"]
mod arch;
#[cfg(all(any(target_os = "none", target_os = "redox"), target_arch = "aarch64"))]
#[path = "arch/aarch64.rs"]
mod arch;
#[cfg(all(any(target_os = "none", target_os = "redox"), target_arch = "riscv64"))]
#[path = "arch/riscv64.rs"]
mod arch;
#[cfg(all(any(target_os = "none", target_os = "redox"), target_arch = "x86"))]
#[path = "arch/x86.rs"]
mod arch;
#[cfg(all(any(target_os = "none", target_os = "redox"), target_arch = "x86_64"))]
#[path = "arch/x86_64.rs"]
mod arch;
#[cfg(not(any(target_os = "none", target_os = "redox")))]
#[path = "arch/nonredox.rs"]
mod arch;
pub mod call;
pub mod data;
pub mod dirent;
pub mod error;
pub mod flag;
pub mod io;
pub mod number;
pub mod sigabi;
pub mod schemev2;
pub mod scheme;
pub use scheme::*;