author | Rich Felker <dalias@aerifal.cx> | 2014年12月21日 02:30:29 -0500 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2014年12月21日 02:30:29 -0500 |
commit | dac4fc49ae3ccb40bae4ef00fb2d93027f4ee9e1 (patch) | |
tree | 70c0f050d783e254ff90e95b3e41e00f2750be85 /include/stdint.h | |
parent | 814aae20093879dec36df0302febbafae2a66778 (diff) | |
download | musl-dac4fc49ae3ccb40bae4ef00fb2d93027f4ee9e1.tar.gz |
-rw-r--r-- | include/stdint.h | 4 |
diff --git a/include/stdint.h b/include/stdint.h index 518d05b9..a2968197 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -47,8 +47,8 @@ typedef uint64_t uint_least64_t; #define UINT8_MAX (0xff) #define UINT16_MAX (0xffff) -#define UINT32_MAX (0xffffffff) -#define UINT64_MAX (0xffffffffffffffff) +#define UINT32_MAX (0xffffffffu) +#define UINT64_MAX (0xffffffffffffffffu) #define INT_FAST8_MIN INT8_MIN #define INT_FAST64_MIN INT64_MIN |