diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2014-01-03 12:30:23 +0100 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2014-01-03 12:30:23 +0100 |
commit | d28b70d1521a924e1c8e8267e61b6b948fbfd4e8 (patch) | |
tree | a085d2f835206059224a90a54491191cbc799363 /tests/unit | |
parent | 231b23acbba2d40265db8843853cc93ab1da2b9b (diff) | |
download | curl-d28b70d1521a924e1c8e8267e61b6b948fbfd4e8.tar.gz |
unittests: do not include curl_memory.h
memdebug.h already contains all required definitions and including
curl_memory.h causes errors like the following:
tests/unit/unit1394.c:119: undefined reference to `Curl_cfree'
tests/unit/unit1394.c:120: undefined reference to `Curl_cfree'
Diffstat (limited to 'tests/unit')
-rw-r--r-- | tests/unit/unit1305.c | 1 | ||||
-rw-r--r-- | tests/unit/unit1394.c | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/tests/unit/unit1305.c b/tests/unit/unit1305.c index 5900c6dd5..91e3b0b27 100644 --- a/tests/unit/unit1305.c +++ b/tests/unit/unit1305.c @@ -37,7 +37,6 @@ #include "hash.h" #include "hostip.h" -#include "curl_memory.h" #include "memdebug.h" /* LAST include file */ static struct SessionHandle *data; diff --git a/tests/unit/unit1394.c b/tests/unit/unit1394.c index d25e4f57a..a3ef8faeb 100644 --- a/tests/unit/unit1394.c +++ b/tests/unit/unit1394.c @@ -27,7 +27,6 @@ #include <stdlib.h> #include <string.h> -#include "curl_memory.h" #include "memdebug.h" /* LAST include file */ static CURLcode unit_setup(void) |