#ifndef __ZLibMalloc_h_ #define __ZLibMalloc_h_ #include // These are pretty straightforward. They allocate memory, and they collect // status. They automatically report status to the log file. void *zlibMalloc(void *, unsigned items, unsigned size); void zlibFree(void *, void * address); #endif