1
2
3
4
5
6
7
//! Platform-specific

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
mod x86_64;

#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
pub use x86_64::{consts, grant_table, hypercall, time, util};