8 lines
137 B
Rust
8 lines
137 B
Rust
//! Architecture specific items
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
pub use self::x86_64::*;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
pub mod x86_64;
|