• H. Peter Anvin's avatar
    types: add C99-style constructors to <asm-generic/int-*.h> · c25bd298
    H. Peter Anvin authored
    Add C99-style constructor macros for fixed types to
    <asm-generic/int-*.h>.  Since Linux uses names like "u64" instead of
    "uint64_t", the constructor macros are called U64_C() instead of
    UINT64_C() and so forth.
    
    These macros allow specific sizes to be specified as
    U64_C(0x123456789abcdef), without gcc issuing warnings as it will if
    one writes (u64)0x123456789abcdef.
    
    When used from assembly, these macros pass their argument unchanged.
    Signed-off-by: default avatarH. Peter Anvin <hpa@zytor.com>
    c25bd298
int-ll64.h 1.46 KB