diff options
author | YamaArashi <shadow962@live.com> | 2016-02-12 15:21:09 -0800 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-02-12 15:21:09 -0800 |
commit | 8e9f3932d7e21ece4840965a5018bcd3c23c5a1b (patch) | |
tree | bdcde1004e64486518406f85bb7c0815cd26b711 /gcc/c-common.c | |
parent | fb95ff91be532f3b63786339ea3cb28694aef172 (diff) |
remove more objc stuff
Diffstat (limited to 'gcc/c-common.c')
-rwxr-xr-x | gcc/c-common.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/gcc/c-common.c b/gcc/c-common.c index 19e9207..a55df35 100755 --- a/gcc/c-common.c +++ b/gcc/c-common.c @@ -2796,6 +2796,13 @@ unsigned char *yy_cur, *yy_lim; #define GETC() (yy_cur < yy_lim ? *yy_cur++ : yy_get_token ()) #define UNGETC(c) ((c), yy_cur--) +void cpplib_init() +{ + cpp_reader_init (&parse_in); + parse_in.opts = &parse_options; + cpp_options_init (&parse_options); +} + int yy_get_token () { |