summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--handy.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/handy.h b/handy.h
index be0454b22c..9a06b77e26 100644
--- a/handy.h
+++ b/handy.h
@@ -174,7 +174,11 @@ typedef U64TYPE U64;
#define I32_MAX INT32_MAX
#define I32_MIN INT32_MIN
-#define U32_MAX UINT32_MAX
+#ifndef UINT32_MAX_BROKEN /* e.g. HP-UX with gcc messes this up */
+# define U32_MAX UINT32_MAX
+#else
+# define U32_MAX 4294967295U
+#endif
#define U32_MIN UINT32_MIN
#else