mod alloc;
pub use alloc::*;
mod kernel_heap;
#[cfg(all(
not(feature = "zisk-embedded-alloc"),
not(feature = "zisk-custom-alloc"),
not(feature = "zisk-embedded-dlmalloc-alloc"),
not(feature = "zisk-embedded-talc-alloc"),
not(feature = "zisk-embedded-tlfs-alloc")
))]
pub mod bump;
#[cfg(any(feature = "zisk-embedded-alloc", feature = "zisk-embedded-dlmalloc-alloc"))]
pub mod embedded_dlmalloc;
#[cfg(feature = "zisk-embedded-talc-alloc")]
pub mod embedded_talc;
#[cfg(feature = "zisk-embedded-tlfs-alloc")]
pub mod embedded_tlfs;
#[cfg(any(feature = "zisk-embedded-alloc", feature = "zisk-embedded-dlmalloc-alloc"))]
pub use embedded_dlmalloc as embedded;
#[cfg(feature = "zisk-embedded-talc-alloc")]
pub use embedded_talc as embedded;
#[cfg(feature = "zisk-embedded-tlfs-alloc")]
pub use embedded_tlfs as embedded;