home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 3 / 3296 / confmalloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-05-07  |  250 b   |  12 lines

  1. #ifndef CONF_MALLOC_H
  2. #define CONF_MALLOC_H
  3.  
  4. /* -DVOID_MALLOC if malloc() returns a void pointer. */
  5. /* -UVOID_MALLOC if malloc() returns a char pointer. */
  6.  
  7. #if (defined(ULTRIX) && ULTRIX >= 40) || defined(CONVEX)
  8. #define VOID_MALLOC
  9. #endif
  10.  
  11. #endif
  12.