aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 393e346..f4f4e6d 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -13,6 +13,9 @@ extern crate core;
#[macro_use]
extern crate bitflags;
+#[macro_use]
+extern crate raw_cpuid;
+
#[cfg(test)]
extern crate std;
@@ -33,4 +36,6 @@ pub mod segmentation;
pub mod task;
pub mod dtables;
pub mod syscall;
-pub mod cpuid; \ No newline at end of file
+pub mod cpuid {
+ pub use raw_cpuid::*;
+} \ No newline at end of file