mallocator 0.1.0

Use malloc() and free() for memory management in Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Mallocator

```rust
#![no_std]
#![feature(default_alloc_error_handler)]

use mallocator::Mallocator;

#[global_allocator]
static A: Mallocator = Mallocator;

fn my_fn_that_requires_heap() {
    let v = vec![1, 2, 3];
}
```