diff options
Diffstat (limited to 'timezone/zdump.c')
-rw-r--r-- | timezone/zdump.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/timezone/zdump.c b/timezone/zdump.c index 209b79d06c..c48ac8435f 100644 --- a/timezone/zdump.c +++ b/timezone/zdump.c @@ -36,7 +36,9 @@ #ifndef HAVE_STDINT_H # define HAVE_STDINT_H \ - (199901 <= __STDC_VERSION__ || 2 < (__GLIBC__ + (0 < __GLIBC_MINOR__))) + (199901 <= __STDC_VERSION__ \ + || 2 < __GLIBC__ + (1 <= __GLIBC_MINOR__) \ + || __CYGWIN__) #endif #if HAVE_STDINT_H # include "stdint.h" |