aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/arch/x86/mod.rs')
-rw-r--r--src/arch/x86/mod.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/arch/x86/mod.rs b/src/arch/x86/mod.rs
new file mode 100644
index 0000000..c47ad74
--- /dev/null
+++ b/src/arch/x86/mod.rs
@@ -0,0 +1,10 @@
+#[cfg(target_arch = "x86")]
+mod common;
+#[cfg(target_arch = "x86")]
+pub use common::*;
+
+#[cfg(target_arch = "x86_64")]
+pub mod common;
+
+mod once;
+pub use once::*;