aboutsummaryrefslogtreecommitdiff
path: root/lib/http.c
diff options
context:
space:
mode:
authorGisle Vanem <gvanem@broadpark.no>2006-09-03 13:52:07 +0000
committerGisle Vanem <gvanem@broadpark.no>2006-09-03 13:52:07 +0000
commit4f4277d9c73b876d0054474d1f696a555c5c9966 (patch)
tree3342f1b5da6eaa1369b20261fad18c8204d40669 /lib/http.c
parent6728bda5c5b68e3ba62ac68706376ab63e45e8b4 (diff)
Simplified #ifdef on WIN32; the statement
" !defined(__GNUC__) || defined(__MINGW32__)" implies CygWin.
Diffstat (limited to 'lib/http.c')
-rw-r--r--lib/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.c b/lib/http.c
index 1b638829b..f7d495529 100644
--- a/lib/http.c
+++ b/lib/http.c
@@ -37,7 +37,7 @@
#include <sys/stat.h>
#endif
-#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__)
+#if defined(WIN32) && !defined(__CYGWIN__)
#include <time.h>
#include <io.h>
#else