home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_07_02 / v7n2046b.txt < prev    next >
Text File  |  1988-12-08  |  292b  |  15 lines

  1. /* interface to vmalloc module */
  2. #include <malloc.h>
  3.  
  4. char *vmalloc();
  5. void vfree();
  6. void vverify();
  7. char *vrealloc();
  8. char *vcalloc();
  9. void vdump();
  10.  
  11. #define malloc(a) vmalloc(a)
  12. #define free(a) vfree(a)
  13. #define realloc(a, b) vrealloc(a, b)
  14. #define calloc(a, b) vcalloc(a, b)
  15.