Files
asterinas/osdk/deps/heap-allocator/src/lib.rs
2025-03-14 19:55:00 +08:00

11 lines
184 B
Rust

// SPDX-License-Identifier: MPL-2.0
#![feature(allocator_api)]
#![no_std]
#![deny(unsafe_code)]
mod allocator;
mod slab_cache;
pub use allocator::{type_from_layout, HeapAllocator};