#pragma lib "libmheap.a" void hinit(ulong); /* Heap markers */ ulong hpush(void); ulong hpop(void); /* Allocators */ void *halloc(ulong); //void *hrealloc(void *, ulong); /* String functions */ const char *hprint(char *, ...); const char *hstrdup(char *);