diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2006-04-26 17:23:28 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2006-04-26 17:23:28 +0000 |
commit | 3cbb1b2b64453c5504df5696ffbf72cb08e43f9c (patch) | |
tree | cd7d78df702dff218b638b7a614d796c20129b1b /lib/hostasyn.c | |
parent | d75e58761370e4f4c5d496252509a3f2c98e6fd6 (diff) | |
download | curl-3cbb1b2b64453c5504df5696ffbf72cb08e43f9c.tar.gz |
Use the HAVE_MALLOC_H and HAVE_PROCESS_H defines
(more logical).
Diffstat (limited to 'lib/hostasyn.c')
-rw-r--r-- | lib/hostasyn.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/hostasyn.c b/lib/hostasyn.c index d1b7cdd18..f9e9edbef 100644 --- a/lib/hostasyn.c +++ b/lib/hostasyn.c @@ -26,9 +26,9 @@ #include <string.h> #include <errno.h> -#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__) +#ifdef HAVE_MALLOC_H /* Win32 */ #include <malloc.h> -#else +#endif #ifdef HAVE_SYS_TYPES_H #include <sys/types.h> #endif @@ -55,13 +55,12 @@ #include <inet.h> #include <stdlib.h> #endif -#endif #ifdef HAVE_SETJMP_H #include <setjmp.h> #endif -#ifdef WIN32 +#ifdef HAVE_PROCESS_H #include <process.h> #endif |