diff options
author | Michael Forney <mforney@mforney.org> | 2019-04-16 17:15:31 -0700 |
---|---|---|
committer | Michael Forney <mforney@mforney.org> | 2019-04-16 17:15:31 -0700 |
commit | 70a293121f71e2481fd5b85007195c879cf218ef (patch) | |
tree | ee52364a0b0e864b8a8e1fb275482f06acf4c755 | |
parent | 056de5d46edfd4f5882217248c49fa64a9ecff48 (diff) | |
download | cproc-70a293121f71e2481fd5b85007195c879cf218ef.tar.xz |
Add a few more alternate keywords
-rw-r--r-- | config.def.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 87b85ff..c8304df 100644 --- a/config.def.h +++ b/config.def.h @@ -33,7 +33,9 @@ static char *preprocesscmd[] = { /* alternate keywords */ "-D", "__alignof__=_Alignof", "-D", "__inline=inline", + "-D", "__inline__=inline", "-D", "__signed__=signed", + "-D", "__thread=_Thread_local", }; static char *compilecmd[] = {"cc-qbe"}; static char *codegencmd[] = {"qbe"}; |