summaryrefslogtreecommitdiff
path: root/tools/build/v2/engine/boehm_gc/include/leak_detector.h
blob: 1d02f400761f3b9920821c58786efa442d294a9f (plain)
1
2
3
4
5
6
7
8
9
#define GC_DEBUG
#include "gc.h"
#define malloc(n) GC_MALLOC(n)
#define calloc(m,n) GC_MALLOC((m)*(n))
#define free(p) GC_FREE(p)
#define realloc(p,n) GC_REALLOC((p),(n))
#undef strdup
#define strdup(s) GC_STRDUP((s))
#define CHECK_LEAKS() GC_gcollect()