aboutsummaryrefslogtreecommitdiff
path: root/boehm-gc/include/leak_detector.h
diff options
context:
space:
mode:
Diffstat (limited to 'boehm-gc/include/leak_detector.h')
-rw-r--r--boehm-gc/include/leak_detector.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/boehm-gc/include/leak_detector.h b/boehm-gc/include/leak_detector.h
deleted file mode 100644
index 6786825ab6d..00000000000
--- a/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(n)
-#define CHECK_LEAKS() GC_gcollect()