diff --git a/ports/geckolib/lib.rs b/ports/geckolib/lib.rs index c3c90da9cb3..357cb9a3d70 100644 --- a/ports/geckolib/lib.rs +++ b/ports/geckolib/lib.rs @@ -39,3 +39,7 @@ mod wrapper; pub mod properties { include!(concat!(env!("OUT_DIR"), "/properties.rs")); } + +// FIXME(bholley): This should probably go away once we harmonize the allocators. +#[no_mangle] +pub extern "C" fn je_malloc_usable_size(_: *const ::libc::c_void) -> ::libc::size_t { 0 }