Heap

Do our own storage allocator, a replacement for malloc/free.

extern (C++) nothrow @nogc
struct Heap {
Heap* prev;
ubyte* buf;
ubyte* p;
uint nleft;
}

Meta