From 290c2e343e8604ce3a82d59146d2d9aa5d2ea457 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Sat, 12 May 2018 15:03:38 -0400 Subject: [PATCH] support __inline__ --- src/parser/parser.l | 1 + 1 file changed, 1 insertion(+) diff --git a/src/parser/parser.l b/src/parser/parser.l index d418bcc..1352c5c 100644 --- a/src/parser/parser.l +++ b/src/parser/parser.l @@ -100,6 +100,7 @@ auto return AUTO; register return REGISTER; inline return INLINE; __inline return INLINE; +__inline__ return INLINE; struct return STRUCT; union return UNION;