home *** CD-ROM | disk | FTP | other *** search
/ ftp.muug.mb.ca / 2014.06.ftp.muug.mb.ca.tar / ftp.muug.mb.ca / pub / src / gopher / gopher1.01 / object / Malloc.h.orig < prev    next >
Text File  |  1992-07-05  |  339b  |  22 lines

  1. /*
  2.  * Just enough to get us memory allocation and NULL
  3.  * 
  4.  * Ick, portable code is ugly!
  5.  */
  6.  
  7. #if !defined(sequent) && !defined(NeXT) && !defined(UMAX43) && !defined(n16)
  8. #   include <malloc.h>
  9. #endif
  10.  
  11. /*
  12.  * Make sure we have NULL
  13.  */
  14.  
  15. #if defined(NeXT) || defined(__STDC__)
  16. #include <stdlib.h>
  17. #endif
  18.  
  19. #ifndef NULL
  20. #define NULL 0
  21. #endif
  22.