aboutsummaryrefslogtreecommitdiff
path: root/src/util/mem/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/mem/mod.rs')
-rw-r--r--src/util/mem/mod.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/util/mem/mod.rs b/src/util/mem/mod.rs
new file mode 100644
index 0000000..36c02a2
--- /dev/null
+++ b/src/util/mem/mod.rs
@@ -0,0 +1,13 @@
+//! # Memory crate
+//!
+//! Provides the Allocator for the OS.
+pub mod alloc;
+mod paging;
+mod types;
+pub use paging::*;
+
+extern crate alloc as core_alloc;
+pub use core_alloc::alloc::{GlobalAlloc, Layout};
+pub use core_alloc::boxed::Box;
+pub use core_alloc::format;
+pub use core_alloc::string::String;