1
2
3
4
5
6
//! Memory alocation APIs.

mod allocator;
mod regional;

pub use self::{allocator::*, regional::*};