aboutsummaryrefslogtreecommitdiff
path: root/pp.c
diff options
context:
space:
mode:
Diffstat (limited to 'pp.c')
-rw-r--r--pp.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/pp.c b/pp.c
index 9584007..25409d1 100644
--- a/pp.c
+++ b/pp.c
@@ -26,8 +26,16 @@ keyword(struct token *tok)
{"_Noreturn", T_NORETURN},
{"_Static_assert", T_STATIC_ASSERT},
{"_Thread_local", T_THREAD_LOCAL},
+ {"__alignof__", T_ALIGNOF},
+ {"__asm", T__ASM__},
{"__asm__", T__ASM__},
+ {"__inline", TINLINE},
+ {"__inline__", TINLINE},
+ {"__signed", TSIGNED},
+ {"__signed__", TSIGNED},
+ {"__thread", T_THREAD_LOCAL},
{"__typeof__", T__TYPEOF__},
+ {"__volatile__", TVOLATILE},
{"auto", TAUTO},
{"break", TBREAK},
{"case", TCASE},