summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-02-15 19:15:45 -0500
committerRich Felker <dalias@aerifal.cx>2011-02-15 19:15:45 -0500
commitf451462098deada2fc30831a28719456e7d474a7 (patch)
treee6ca000407f1d0f4abf3dd937b6ffc7e96ab723a
parent6d36c2098be0b431cad5c8f8327f1beb943028b0 (diff)
downloadmusl-f451462098deada2fc30831a28719456e7d474a7.tar.gz
fix the types of some integer constant limits in headers
-rw-r--r--arch/i386/bits/limits.h4
-rw-r--r--arch/x86_64/bits/limits.h4
-rw-r--r--include/stdlib.h2
3 files changed, 5 insertions, 5 deletions
diff --git a/arch/i386/bits/limits.h b/arch/i386/bits/limits.h
index f5778579..4e992453 100644
--- a/arch/i386/bits/limits.h
+++ b/arch/i386/bits/limits.h
@@ -22,11 +22,11 @@
#define INT_MIN (-1-0x7fffffff)
#define INT_MAX 0x7fffffff
-#define UINT_MAX 0xffffffff
+#define UINT_MAX 0xffffffffU
#define LONG_MIN (-1-0x7fffffffL)
#define LONG_MAX 0x7fffffffL
-#define ULONG_MAX 0xffffffffL
+#define ULONG_MAX 0xffffffffUL
#define LLONG_MIN (-1-0x7fffffffffffffffLL)
#define LLONG_MAX 0x7fffffffffffffffLL
diff --git a/arch/x86_64/bits/limits.h b/arch/x86_64/bits/limits.h
index fadaf849..4f761b6c 100644
--- a/arch/x86_64/bits/limits.h
+++ b/arch/x86_64/bits/limits.h
@@ -20,11 +20,11 @@
#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
diff --git a/include/stdlib.h b/include/stdlib.h
index adacad85..047a5f3f 100644
--- a/include/stdlib.h
+++ b/include/stdlib.h
@@ -72,7 +72,7 @@ size_t wcstombs (char *, const wchar_t *, size_t);
#define EXIT_FAILURE 1
#define EXIT_SUCCESS 0
-#define MB_CUR_MAX 4
+#define MB_CUR_MAX ((size_t)+4)
#define RAND_MAX (0x7fffffff)