X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/951366c145107e763a92094462bfed0ae19d9ad1..7c6b64d02355fa26b3a256906327ab3edbbee8b7:/src/getargs.c diff --git a/src/getargs.c b/src/getargs.c index e3ffdb68..eee6314f 100644 --- a/src/getargs.c +++ b/src/getargs.c @@ -34,11 +34,12 @@ int no_lines_flag = 0; int no_parser_flag = 0; int token_table_flag = 0; int verbose_flag = 0; -int statistics_flag = 0; int yacc_flag = 0; /* for -y */ int graph_flag = 0; +int trace_flag = 0; const char *skeleton = NULL; +const char *include = NULL; extern char *program_name; @@ -168,6 +169,10 @@ getargs (int argc, char *argv[]) skeleton = optarg; break; + case 'I': + include = optarg; + break; + case 'd': /* Here, the -d and --defines options are differentiated. */ defines_flag = 1;