aboutsummaryrefslogtreecommitdiff
path: root/src/util/mem/mod.rs
blob: 36c02a2f848007430f89a5574a7faecf6770f529 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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;