diff options
Diffstat (limited to '')
-rw-r--r-- | gzguts.h | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -210,9 +210,5 @@ char ZLIB_INTERNAL *gz_strwinerror(DWORD error); | |||
210 | /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t | 210 | /* GT_OFF(x), where x is an unsigned value, is true if x > maximum z_off64_t |
211 | value -- needed when comparing unsigned to z_off64_t, which is signed | 211 | value -- needed when comparing unsigned to z_off64_t, which is signed |
212 | (possible z_off64_t types off_t, off64_t, and long are all signed) */ | 212 | (possible z_off64_t types off_t, off64_t, and long are all signed) */ |
213 | #ifdef INT_MAX | ||
214 | # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > INT_MAX) | ||
215 | #else | ||
216 | unsigned ZLIB_INTERNAL gz_intmax(void); | 213 | unsigned ZLIB_INTERNAL gz_intmax(void); |
217 | # define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax()) | 214 | #define GT_OFF(x) (sizeof(int) == sizeof(z_off64_t) && (x) > gz_intmax()) |
218 | #endif | ||