#ifndef SAFEMALLOC_H_HEADER_INCLUDED #define SAFEMALLOC_H_HEADER_INCLUDED #include #ifndef safemalloc void *safemalloc (size_t length); #endif #ifndef safecalloc void *safecalloc (size_t num, size_t blength); #endif #ifndef safefree void safefree (void *ptr); #endif void dump_memory(); #define NEW(a) ((a *)malloc(sizeof(a))) #define NEW_ARRAY_ZEROED(a, b) ((a *)safecalloc(b, sizeof(a))) #define NEW_ARRAY(a, b) ((a *)safemalloc(b*sizeof(a))) #endif