ps_alloc/lib.rs
1#![allow(clippy::not_unsafe_ptr_arg_deref)]
2
3mod alloc;
4mod error;
5mod free;
6mod header;
7mod marker;
8mod realloc;
9
10pub use alloc::alloc;
11pub use error::{AllocationError, DeallocationError, ReallocationError};
12pub use free::free;
13pub use header::HEADER_SIZE;
14pub use realloc::realloc;