Support inline/__inline

This commit is contained in:
Josh Holtrop 2018-05-12 11:54:14 -04:00
parent c5764ed15e
commit 6890ac97b5
2 changed files with 2 additions and 0 deletions

View File

@ -99,6 +99,7 @@ extern return EXTERN;
auto return AUTO; auto return AUTO;
register return REGISTER; register return REGISTER;
inline return INLINE; inline return INLINE;
__inline return INLINE;
struct return STRUCT; struct return STRUCT;
union return UNION; union return UNION;

View File

@ -340,6 +340,7 @@ init_declarator
storage_class_specifier storage_class_specifier
: TYPEDEF : TYPEDEF
| EXTERN | EXTERN
| INLINE
| STATIC | STATIC
| AUTO | AUTO
| REGISTER | REGISTER