blob: bd52cb1a009cd4925f23d9c8b6abe86c6dc9dbfe [file] [log] [blame]
//! Target `cfg` attributes. Documented in the "Conditional compilation" section
//! of the Rust reference:
//!
//! <https://doc.rust-lang.org/reference/attributes.html#conditional-compilation>
mod arch;
mod endian;
mod env;
mod os;
mod pointerwidth;
pub use self::{arch::Arch, endian::Endian, env::Env, os::OS, pointerwidth::PointerWidth};