pros_core/allocator/
mod.rs

1//! Simple allocator using the VEX libc allocation functions in vexos and jemalloc in the sim.
2
3#[cfg(target_arch = "arm")]
4mod vexos;
5#[cfg(target_arch = "wasm32")]
6mod wasm;