diff options
author | Rich Felker <dalias@aerifal.cx> | 2011-02-15 19:15:45 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2011-02-15 19:15:45 -0500 |
commit | f451462098deada2fc30831a28719456e7d474a7 (patch) | |
tree | e6ca000407f1d0f4abf3dd937b6ffc7e96ab723a /arch/i386 | |
parent | 6d36c2098be0b431cad5c8f8327f1beb943028b0 (diff) | |
download | musl-f451462098deada2fc30831a28719456e7d474a7.tar.gz musl-f451462098deada2fc30831a28719456e7d474a7.tar.xz musl-f451462098deada2fc30831a28719456e7d474a7.zip |
fix the types of some integer constant limits in headers
Diffstat (limited to 'arch/i386')
-rw-r--r-- | arch/i386/bits/limits.h | 4 |
1 files changed, 2 insertions, 2 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 |