1
2
3
4
5
6
//! Simple allocator using the VEX libc allocation functions in vexos and jemalloc in the sim.

#[cfg(target_os = "vexos")]
mod vexos;
#[cfg(target_arch = "wasm32")]
mod wasm;