This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
UIN32_MAX with borken under HP-UX+gcc
[perl5.git] / handy.h
diff --git a/handy.h b/handy.h
index be0454b..9a06b77 100644 (file)
--- 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