taglinefilesource code
array82zBoot/gzip.h#  define EXTERN(type, array)  extern type * near array
array83zBoot/gzip.h#  define DECLARE(type, array, size)  type * near array
array84zBoot/gzip.h#  define ALLOC(type, array, size) { \
array85zBoot/gzip.harray = (type*)fcalloc((unsigned)(((size)+1L)/2), 2*sizeof(type)); \
array86zBoot/gzip.hif (array == NULL) error("insufficient memory"); \
array88zBoot/gzip.h#  define FREE(array) {if (array != NULL) fcfree(array), array=NULL;}
array90zBoot/gzip.h#  define EXTERN(type, array)  extern type array[]
array91zBoot/gzip.h#  define DECLARE(type, array, size)  type array[size]
array92zBoot/gzip.h#  define ALLOC(type, array, size)
array93zBoot/gzip.h#  define FREE(array)