X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=tokens.inc;h=affe29cf078ff74dcff7a88a317fbfab4a5e4b34;hb=ed07e4be99cb6911f67a3de7d9034b375c7e9886;hp=d5144e0fd9901ae96964b2cdd6e88e8c50c3682d;hpb=0a41e7f0949cc129b24446f023241ba3ade7fdfa;p=cparser diff --git a/tokens.inc b/tokens.inc index d5144e0..affe29c 100644 --- a/tokens.inc +++ b/tokens.inc @@ -35,7 +35,6 @@ S(_ALL, long) S(_ALL, register) S(_ALL, return) S(_ALL, short) -S(_ANSI|_C99, signed) S(_ALL, sizeof) S(_ALL, static) S(_ALL, struct) @@ -74,6 +73,9 @@ S(_MS, __FUNCSIG__) S(_MS, __FUNCDNAME__) #undef S +T(_ANSI|_C99, signed, "signed",) +T(_ALL, __signed, "__signed", = T_signed) +T(_ALL, __signed__, "__signed__", = T_signed) T(_C99|_GNUC, _Complex, "_Complex",) T(_GNUC, __complex__, "__complex__", = T__Complex) T(_GNUC, __complex, "__complex", = T__Complex) @@ -87,6 +89,7 @@ T(_GNUC|_MS, __alignof, "__alignof", = T___alignof__) T(_MS, _alignof, "_alignof", = T___alignof__) T(_ANSI|_C99, const, "const",) T(_GNUC, __const, "__const", = T_const) +T(_GNUC, __const__, "__const__", = T_const) T(_C99, restrict, "restrict",) T(_GNUC, __restrict__, "__restrict__", = T_restrict) T(_GNUC, __restrict, "__restrict", = T_restrict) @@ -96,6 +99,7 @@ T(_GNUC, __asm__, "__asm__", = T_asm) T(_MS, _asm, "_asm", = T_asm) T(_GNUC|_MS, __asm, "__asm", = T_asm) T(_ANSI|_C99, volatile, "volatile",) +T(_GNUC, __volatile, "__volatile", = T_volatile) T(_GNUC, __volatile__, "__volatile__", = T_volatile) T(_C99, inline, "inline",) T(_GNUC|_MS, __inline, "__inline", = T_inline)