aboutsummaryrefslogtreecommitdiff
path: root/zconf.h
diff options
context:
space:
mode:
Diffstat (limited to 'zconf.h')
-rw-r--r--zconf.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/zconf.h b/zconf.h
index 80de2ce..7a9d8f2 100644
--- a/zconf.h
+++ b/zconf.h
@@ -393,11 +393,11 @@ typedef uLong FAR uLongf;
393 393
394#if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC) 394#if !defined(Z_U4) && !defined(Z_SOLO) && defined(STDC)
395# include <limits.h> 395# include <limits.h>
396# if (UINT_MAX == 4294967295) 396# if (UINT_MAX == 0xffffffffUL)
397# define Z_U4 unsigned 397# define Z_U4 unsigned
398# elif (ULONG_MAX == 4294967295) 398# elif (ULONG_MAX == 0xffffffffUL)
399# define Z_U4 unsigned long 399# define Z_U4 unsigned long
400# elif (USHRT_MAX == 4294967295) 400# elif (USHRT_MAX == 0xffffffffUL)
401# define Z_U4 unsigned short 401# define Z_U4 unsigned short
402# endif 402# endif
403#endif 403#endif