home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / info-service / gopher / Unix / gopher1.12 / object / Malloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-12-30  |  1.1 KB  |  45 lines

  1. /********************************************************************
  2.  * $Author: lindner $
  3.  * $Revision: 1.1 $
  4.  * $Date: 1992/12/10 23:27:52 $
  5.  * $Source: /home/mudhoney/GopherSrc/release1.11/object/RCS/Malloc.h,v $
  6.  * $Status: $
  7.  *
  8.  * Paul Lindner, University of Minnesota CIS.
  9.  *
  10.  * Copyright 1991, 1992 by the Regents of the University of Minnesota
  11.  * see the file "Copyright" in the distribution for conditions of use.
  12.  *********************************************************************
  13.  * MODULE: Malloc.h
  14.  * Portable method of getting malloc definitions
  15.  *********************************************************************
  16.  * Revision History:
  17.  * $Log: Malloc.h,v $
  18.  * Revision 1.1  1992/12/10  23:27:52  lindner
  19.  * gopher 1.1 release
  20.  *
  21.  *
  22.  *********************************************************************/
  23.  
  24.  
  25.  
  26. /*
  27.  * Just enough to get us memory allocation and NULL
  28.  * 
  29.  * Ick, portable code is ugly!
  30.  */
  31.  
  32. #include "Stdlib.h"
  33.  
  34. /*
  35.  * Make sure we have NULL
  36.  */
  37.  
  38. #if defined(NeXT) || defined(__STDC__)
  39. #include <stdlib.h>
  40. #endif
  41.  
  42. #ifndef NULL
  43. #define NULL 0
  44. #endif
  45.