• R
    fix signedness of UINT32_MAX and UINT64_MAX at the preprocessor level · dac4fc49
    Rich Felker 提交于
    per the rules for hexadecimal integer constants, the previous
    definitions were correctly treated as having unsigned type except
    possibly when used in preprocessor conditionals, where all artithmetic
    takes place as intmax_t or uintmax_t. the explicit 'u' suffix ensures
    that they are treated as unsigned in all contexts.
    dac4fc49
stdint.h 2.5 KB