1 2 3 4 5 6 7 8
#![cfg_attr(not(test), no_std)] pub mod buddy_alloc; mod non_threadsafe_alloc; #[cfg(test)] mod tests; pub use non_threadsafe_alloc::NonThreadsafeAlloc;
1 2 3 4 5 6 7 8
#![cfg_attr(not(test), no_std)] pub mod buddy_alloc; mod non_threadsafe_alloc; #[cfg(test)] mod tests; pub use non_threadsafe_alloc::NonThreadsafeAlloc;