1
2
3
4
5
6
7
8
9
#![no_std]
#![no_implicit_prelude]
#![feature(asm)]

#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
#[path = "linux-x86_64/mod.rs"]
mod target;

pub use target::*;