summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Cardell Widerkrantz <mc@hack.org>2011-03-28 15:04:22 +0200
committerMichael Cardell Widerkrantz <mc@hack.org>2011-03-28 15:18:38 +0200
commitc786bbcc1bbb84b16b3bcca3b194bf483af3f66a (patch)
tree2b78a6039c27958a0dae4e275b3ab1657e2efe6c
parent440fbc709e535f1ec79c4cc6ed462f0bcbfae249 (diff)
downloadmcwm-c786bbcc1bbb84b16b3bcca3b194bf483af3f66a.zip
Include dmalloc here as well.
-rw-r--r--list.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/list.c b/list.c
index d6ecb1a..fcfe33f 100644
--- a/list.c
+++ b/list.c
@@ -2,6 +2,10 @@
#include <stdio.h>
#include "list.h"
+#ifdef DMALLOC
+#include "dmalloc.h"
+#endif
+
#ifdef DEBUG
#define PDEBUG(Args...) \
do { fprintf(stderr, "mcwm: "); fprintf(stderr, ##Args); } while(0)