zmalloc.h 267 B

12345678910111213
  1. /* Drop in replacement for zmalloc.h in order to just use libc malloc without
  2. * any wrappering. */
  3. #ifndef ZMALLOC_H
  4. #define ZMALLOC_H
  5. #define zmalloc malloc
  6. #define zrealloc realloc
  7. #define zcalloc(x) calloc(x,1)
  8. #define zfree free
  9. #define zstrdup strdup
  10. #endif