diff options
author | Gisle Vanem <gvanem@broadpark.no> | 2006-09-03 13:52:07 +0000 |
---|---|---|
committer | Gisle Vanem <gvanem@broadpark.no> | 2006-09-03 13:52:07 +0000 |
commit | 4f4277d9c73b876d0054474d1f696a555c5c9966 (patch) | |
tree | 3342f1b5da6eaa1369b20261fad18c8204d40669 /lib/timeval.h | |
parent | 6728bda5c5b68e3ba62ac68706376ab63e45e8b4 (diff) |
Simplified #ifdef on WIN32; the statement
" !defined(__GNUC__) || defined(__MINGW32__)" implies
CygWin.
Diffstat (limited to 'lib/timeval.h')
-rw-r--r-- | lib/timeval.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/timeval.h b/lib/timeval.h index 84ea27418..f79f41c73 100644 --- a/lib/timeval.h +++ b/lib/timeval.h @@ -30,7 +30,7 @@ #include "setup.h" -#if defined(WIN32) && !defined(__GNUC__) || defined(__MINGW32__) +#if defined(WIN32) && !defined(__CYGWIN__) #include <time.h> #else #ifdef HAVE_SYS_TIME_H |