X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/2ca209c11d0185c0ae67861205e316f6311595b4..eeeb962b:/src/reader.c diff --git a/src/reader.c b/src/reader.c index 73e79704..ac160aed 100644 --- a/src/reader.c +++ b/src/reader.c @@ -974,6 +974,16 @@ parse_skel_decl (void) /* Complete with parse_dquoted_param () on the CVS branch 1.29. */ } +/*---------------------------------------. +| Parse what comes after %skeleton_path. | +`---------------------------------------*/ + +void +parse_include_decl (void) +{ + /* Complete with parse_dquoted_param () on the CVS branch 1.29. */ +} + /*----------------------------------------------------------------. | Read from finput until `%%' is seen. Discard the `%%'. Handle | | any `%' declarations, and copy the contents of any `%{ ... %}' | @@ -1048,6 +1058,10 @@ read_declarations (void) parse_skel_decl (); break; + case tok_include: + parse_include_decl (); + break; + case tok_noop: break;