diff options
Diffstat (limited to 'gcc/c-parse.gperf')
-rw-r--r-- | gcc/c-parse.gperf | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gcc/c-parse.gperf b/gcc/c-parse.gperf index 604cb64..8f272c4 100644 --- a/gcc/c-parse.gperf +++ b/gcc/c-parse.gperf @@ -1,7 +1,15 @@ %{ -/* Command-line: gperf -L KR-C -F ', 0, 0' -p -j1 -i 1 -g -o -t -N is_reserved_word -k1,3,$ c-parse.gperf */ +/* Command-line: gperf -L C -F ', 0, 0' -p -j1 -i 1 -g -o -t -N is_reserved_word -k1,3,$ c-parse.gperf */ %} struct resword { const char *name; short token; enum rid rid; }; +#ifdef __GNUC__ +__inline +#endif +static unsigned int hash PARAMS ((const char *, unsigned int)); +#ifdef __GNUC__ +__inline +#endif +struct resword *is_reserved_word PARAMS ((const char *, unsigned int)); %% @class, CLASS, NORID @compatibility_alias, ALIAS, NORID |