]> git.saurik.com Git - bison.git/blobdiff - src/files.h
Remove the last uses of mktemp and unlink/delete.
[bison.git] / src / files.h
index a6c8875caf103b42a8e28d6145b59f7ef015f4fd..c511ea65ecbc7a63b8ed284a4c0ca135d03c3db3 100644 (file)
@@ -29,9 +29,6 @@
 
 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 */
-                      /* and also contains all the %{ ... %} definitions.  */
 extern FILE *fguard;   /* if semantic parser, output yyguard, containing all the guard code */
 extern FILE *fparser;  /* read the parser to copy into ftable */
 
@@ -49,6 +46,14 @@ extern struct obstack action_obstack;
 /* If semantic parser, output a .h file that defines YYSTYPE */
 extern struct obstack attrs_obstack;
 
+/* Output the tables and the parser and also contains all the %{
+   ... %} definitions.  */
+extern struct obstack table_obstack;
+
+/* optionally output #define's for token numbers. */
+extern struct obstack defines_obstack;
+
+
 extern char *infile;
 extern int lineno;
 extern char *outfile;