zmisc.h 268 B

123456789101112
  1. /**
  2. * Misc portability and convenience macros.
  3. **/
  4. #include <stdlib.h>
  5. #define zalloc malloc
  6. #define zrealloc realloc
  7. #define zfree free
  8. #define znew(type, n) (type *)zalloc(sizeof(type) * (n))
  9. #define zrenew(type, p, n) (type *)zrealloc((p), sizeof(type) * (n))