From f07479d57cb8ac284eba672a03e023acde69e7ee Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Mon, 5 Mar 2012 14:44:32 +1100 Subject: [PATCH] ensure malloc() and friends are in the namespace --- leakmalloc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/leakmalloc.h b/leakmalloc.h index 5a0248b..8134c0b 100644 --- a/leakmalloc.h +++ b/leakmalloc.h @@ -18,6 +18,8 @@ #define _LEAKMALLOC_H #include +#include +#include char *leak_strdup(const char *s); void *leak_malloc(size_t len);