home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 10 / Fresh_Fish_10_2352.bin / new / dev / lang / sgmls / src / alloc.h < prev    next >
C/C++ Source or Header  |  1994-07-10  |  190b  |  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.