X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/07a58c1301a1131f7505e74f1d54bfdb31d193f5..f17bcd1f66dab24135ca3352491ac8fa4385fe37:/src/getargs.h?ds=sidebyside diff --git a/src/getargs.h b/src/getargs.h index 3b9e2997..d674b78a 100644 --- a/src/getargs.h +++ b/src/getargs.h @@ -1,5 +1,5 @@ /* Parse command line arguments for bison. - Copyright (C) 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc. + Copyright 1984, 1986, 1989, 1992, 2000 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -18,17 +18,24 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef GETARGS_H_ +# define GETARGS_H_ + /* flags set by % directives */ extern char *spec_file_prefix; /* for -b */ extern char *spec_name_prefix; /* for -p */ -extern int debugflag; /* for -t */ -extern int definesflag; /* for -d */ -extern int fixed_outfiles; /* for -y */ -extern int nolinesflag; /* for -l */ -extern int noparserflag; /* for -n */ -extern int rawtoknumflag; /* for -r */ -extern int toknumflag; /* for -k */ -extern int verboseflag; /* for -v */ +extern int debug_flag; /* for -t */ +extern int defines_flag; /* for -d */ +extern int locations_flag; +extern int no_lines_flag; /* for -l */ +extern int no_parser_flag; /* for -n */ +extern int raw_flag; /* for -r */ +extern int statistics_flag; +extern int token_table_flag; /* for -k */ +extern int verbose_flag; /* for -v */ +extern int yacc_flag; /* for -y */ void getargs PARAMS ((int argc, char *argv[])); + +#endif /* !GETARGS_H_ */