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/x86_64/bits | |
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/x86_64/bits')
-rw-r--r-- | arch/x86_64/bits/limits.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |