home *** CD-ROM | disk | FTP | other *** search
/ GEMini Atari / GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso / files / telecomm / nhclb120 / alloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-26  |  217 b   |  17 lines

  1. #ifndef    NULL
  2. #define    NULL    (void *)0
  3. #endif
  4.  
  5. #define    NULLCHAR    (char *)NULL
  6. union header {
  7.     struct {
  8.         union header *ptr;
  9.         unsigned size;
  10.     } s;
  11.     long l;
  12. };
  13.  
  14. typedef union header HEADER;
  15. #define    NULLHDR    (HEADER *)NULL
  16.  
  17.