home *** CD-ROM | disk | FTP | other *** search
/ vis-ftp.cs.umass.edu / vis-ftp.cs.umass.edu.tar / vis-ftp.cs.umass.edu / pub / Software / ASCENDER / ascender.tar.Z / ascender.tar / Triangulate / include / allocdebug.h < prev    next >
C/C++ Source or Header  |  1995-04-13  |  341b  |  17 lines

  1. /* Used in debugging of memory allocation, particularly in
  2.  * detecting unfreed memory */
  3.  
  4. #ifndef allocdebug_h
  5. #define allocdebug_h
  6.  
  7. #define malloc(n) myalloc(n)
  8. #define calloc(m,n) myalloc((m)*(n))
  9. #define free(n) myfree(n)
  10.  
  11. /* External function declarations */
  12. extern char *myalloc();
  13. extern char *myfree();
  14. extern allocreport();
  15.  
  16. #endif
  17.