util.h 242 B

1234567891011121314
  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. #include <stddef.h>
  8. void *emalloc(size_t size);
  9. void *ecalloc(size_t nmemb, size_t size);
  10. #endif /*_UTIL_H_*/