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

  1. #ifndef MALLOCFREE_H
  2. #define MALLOCFREE_H
  3.  
  4. #include "confmalloc.h"
  5. #include "conffree.h"
  6.  
  7. #ifdef VOID_MALLOC
  8. extern void *malloc();
  9. #else
  10. extern char *malloc();
  11. #endif
  12. #ifdef VOID_FREE
  13. extern void free();
  14. #else
  15. extern int free();
  16. #endif
  17.  
  18. #endif
  19.