1 2 3 4 5 6 7 8 9 10
#![cfg_attr(not(test), no_std)] pub mod block_list_alloc; pub mod mixed_alloc; /// reexports pub use buddy_alloc; #[cfg(test)] mod tests;
1 2 3 4 5 6 7 8 9 10
#![cfg_attr(not(test), no_std)] pub mod block_list_alloc; pub mod mixed_alloc; /// reexports pub use buddy_alloc; #[cfg(test)] mod tests;