fix the types of some integer constant limits in headers
[musl] / arch / x86_64 / bits / limits.h
index fadaf84..4f761b6 100644 (file)
 
 #define INT_MIN  (-1-0x7fffffff)
 #define INT_MAX  0x7fffffff
-#define UINT_MAX 0xffffffff
+#define UINT_MAX 0xffffffffU
 
 #define LONG_MIN  (-1-0x7fffffffffffffffL)
 #define LONG_MAX  0x7fffffffffffffffL
-#define ULONG_MAX 0xffffffffffffffffL
+#define ULONG_MAX 0xffffffffffffffffUL
 
 #define LLONG_MIN  (-1-0x7fffffffffffffffLL)
 #define LLONG_MAX  0x7fffffffffffffffLL