Mallocator

```rust

![no_std]

![feature(defaultallocerror_handler)]

use mallocator::Mallocator;

[global_allocator]

static A: Mallocator = Mallocator;

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