X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=include%2Fstdint.h;h=a2968197dbe2312c46de0d41f09675b56846984c;hb=b583c5d3b4cc2c54c68eef5eb7855ecfacee8bfc;hp=ad6aaead6e45524312a9bb70b2f33edd9803e953;hpb=c4dd0c98bae8e3583f68ba5b30db491055ab2322;p=musl diff --git a/include/stdint.h b/include/stdint.h index ad6aaead..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 @@ -78,7 +78,7 @@ typedef uint64_t uint_least64_t; #define INTMAX_MAX INT64_MAX #define UINTMAX_MAX UINT64_MAX -#define WINT_MIN 0 +#define WINT_MIN 0U #define WINT_MAX UINT32_MAX #if L'\0'-1 > 0