mirmalloc 0.2.0

MiMalloc Rust Bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use mirmalloc::{Vanilla};
use crate::util::allocate_multiple;

#[global_allocator]
static GLOBAL: Vanilla = Vanilla;

mod util;

#[test]
fn can_allocate() {
    allocate_multiple();
}