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 < prev    next >
C/C++ Source or Header  |  1992-07-05  |  345b  |  24 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. /*
  16. #if defined(NeXT) || defined(__STDC__)
  17. #include <stdlib.h>
  18. #endif
  19. */
  20.  
  21. #ifndef NULL
  22. #define NULL 0
  23. #endif
  24.