Heap

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

extern (C++) nothrow
struct Heap {
Heap* prev;
ubyte* buf;
ubyte* p;
uint nleft;
}
Suggestion Box / Bug Report