rCore-Tutorial-v3/os/src/mm/mod.rs

5 lines
91 B
Rust
Raw Normal View History

mod heap_allocator;
pub use heap_allocator::init_heap;
pub use heap_allocator::heap_test;