aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.4.3/boehm-gc/include/leak_detector.h
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.4.3/boehm-gc/include/leak_detector.h')
-rw-r--r--gcc-4.4.3/boehm-gc/include/leak_detector.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/gcc-4.4.3/boehm-gc/include/leak_detector.h b/gcc-4.4.3/boehm-gc/include/leak_detector.h
deleted file mode 100644
index 0674ab4d0..000000000
--- a/gcc-4.4.3/boehm-gc/include/leak_detector.h
+++ /dev/null
@@ -1,7 +0,0 @@
-#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))
-#define CHECK_LEAKS() GC_gcollect()