-
-/* These two should be pathnames for opening the sample parser files.
- When bison is installed, they should be absolute pathnames.
- XPFILE1 and XPFILE2 normally come from config.h. */
-
-#define PFILE XPFILE /* Simple parser */
-#define PFILE1 XPFILE1 /* Semantic parser */
-
-extern FILE *finput; /* read grammar specifications */
-extern FILE *foutput; /* optionally output messages describing the actions taken */
-extern FILE *fdefines; /* optionally output #define's for token numbers. */
-extern FILE *ftable; /* output the tables and the parser */
-extern FILE *fattrs; /* if semantic parser, output a .h file that defines YYSTYPE */
- /* and also contains all the %{ ... %} definitions. */
-extern FILE *fguard; /* if semantic parser, output yyguard, containing all the guard code */
-extern FILE *faction; /* output all the action code; precise form depends on which parser */
-extern FILE *fparser; /* read the parser to copy into ftable */