comparison gc/include/leak_detector.h @ 51488:5de98dce4bd1

*** empty log message ***
author Dave Love <fx@gnu.org>
date Thu, 05 Jun 2003 17:49:22 +0000
parents
children
comparison
equal deleted inserted replaced
51487:01d68b199093 51488:5de98dce4bd1
1 #define GC_DEBUG
2 #include "gc.h"
3 #define malloc(n) GC_MALLOC(n)
4 #define calloc(m,n) GC_MALLOC((m)*(n))
5 #define free(p) GC_FREE(p)
6 #define realloc(p,n) GC_REALLOC((p),(n))
7 #define CHECK_LEAKS() GC_gcollect()