/* until.h by Cecylia Bocovich * * Macros and wrapper functions */ #ifndef _UTIL_H_ #define _UTIL_H_ void *emalloc(size_t size); void *ecalloc(size_t nmemb, size_t size); #endif /*_UTIL_H_*/