I have a C library that can take pointers to malloc and free replacements for custom allocator. I thought it'd be cool to use Rust's allocator, so that the C library can reuse jemalloc instead of libc malloc.
Does Rust expose its "raw" malloc/free anywhere? Or should I steal memory from a Vec instead?