summaryrefslogtreecommitdiff
path: root/sys/arm/include
diff options
context:
space:
mode:
authorTijl Coosemans <tijl@FreeBSD.org>2011-01-08 11:13:34 +0000
committerTijl Coosemans <tijl@FreeBSD.org>2011-01-08 11:13:34 +0000
commit9858863cd4959006703cb9529d07777637315c69 (patch)
tree932f41023ad8badf93d44c65a1df3adb5980bc73 /sys/arm/include
parent4e738f5a8dd6af846c5d68f5031e8277698cb8f9 (diff)
Notes
Diffstat (limited to 'sys/arm/include')
-rw-r--r--sys/arm/include/_limits.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arm/include/_limits.h b/sys/arm/include/_limits.h
index db18d8264218..8cb84649b100 100644
--- a/sys/arm/include/_limits.h
+++ b/sys/arm/include/_limits.h
@@ -40,8 +40,6 @@
* type converted according to the integral promotions. The subtraction for
* INT_MIN, etc., is so the value is not unsigned; e.g., 0x80000000 is an
* unsigned int for 32-bit two's complement ANSI compilers (section 3.1.3.2).
- * These numbers are for the default configuration of gcc. They work for
- * some other compilers as well, but this should not be depended on.
*/
#define __CHAR_BIT 8 /* number of bits in a char */
@@ -55,7 +53,7 @@
#define __SHRT_MAX 0x7fff /* max value for a short */
#define __SHRT_MIN (-0x7fff - 1) /* min value for a short */
-#define __UINT_MAX 0xffffffffU /* max value for an unsigned int */
+#define __UINT_MAX 0xffffffff /* max value for an unsigned int */
#define __INT_MAX 0x7fffffff /* max value for an int */
#define __INT_MIN (-0x7fffffff - 1) /* min value for an int */