util.h 221 B

123456789101112
  1. /* until.h by Cecylia Bocovich <cbocovic@uwaterloo.ca>
  2. *
  3. * Macros and wrapper functions
  4. */
  5. #ifndef _UTIL_H_
  6. #define _UTIL_H_
  7. void *emalloc(size_t size);
  8. void *ecalloc(size_t nmemb, size_t size);
  9. #endif /*_UTIL_H_*/