#![feature(allocator_api)]
#![no_std]
#![deny(unsafe_code)]
extern crate alloc;
macro_rules! __log_prefix {
() => {
"heap: "
};
}
mod allocator;
mod cpu_local_allocator;
mod slab_cache;
pub use allocator::{HeapAllocator, type_from_layout};
pub use cpu_local_allocator::{CpuLocalBox, alloc_cpu_local};