summaryrefslogtreecommitdiff
path: root/lib/hostsyn.c
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2006-07-11 21:34:23 +0000
committerYang Tse <yangsita@gmail.com>2006-07-11 21:34:23 +0000
commitfe22872d14c3b6b63ac27a9017ed9695ac3b932b (patch)
tree13371b16e69390845b8227c183cfae2ba5b29f56 /lib/hostsyn.c
parent4d95d23d99a35a098cdc17f91b36d41dab98a30c (diff)
downloadcurl-fe22872d14c3b6b63ac27a9017ed9695ac3b932b.tar.gz
include <malloc.h> only if HAVE_MALLOC_H and NEED_MALLOC_H are both defined.
Diffstat (limited to 'lib/hostsyn.c')
-rw-r--r--lib/hostsyn.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hostsyn.c b/lib/hostsyn.c
index fecde5f63..8cf4da81a 100644
--- a/lib/hostsyn.c
+++ b/lib/hostsyn.c
@@ -25,7 +25,7 @@
#include <string.h>
-#ifdef HAVE_MALLOC_H
+#if defined(HAVE_MALLOC_H) && defined(NEED_MALLOC_H)
#include <malloc.h>
#endif
#ifdef HAVE_SYS_TYPES_H