home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / lang / sgmls / src / alloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-10  |  190 b   |  9 lines

  1. /* alloc.h */
  2.  
  3. typedef unsigned SIZE_T;
  4.  
  5. /* Like malloc and realloc, but don't return if no memory is available. */
  6.  
  7. extern UNIV xmalloc P((SIZE_T));
  8. extern UNIV xrealloc P((UNIV, SIZE_T));
  9.