]> git.saurik.com Git - bison.git/blobdiff - src/files.c
* NEWS, doc/bison.texinfo, doc/bison.1, doc/bison.rnh: Document that
[bison.git] / src / files.c
index b6fed391a0fbad072087b0f3186a5f02b6eeab48..b3064b5a473d172cbafb872cdbf2e34f73be7fa2 100644 (file)
@@ -437,34 +437,6 @@ compute_output_file_names (void)
 #endif /* MSDOS */
 }
 
-/*-----------------------------------------------------------------.
-| Open the input file.  Look for the skeletons.  Find the names of |
-| the output files.  Prepare the obstacks.                         |
-`-----------------------------------------------------------------*/
-
-void
-open_files (void)
-{
-  finput = xfopen (infile, "r");
-
-  /* Initialize the obstacks. */
-  obstack_init (&action_obstack);
-  obstack_init (&attrs_obstack);
-  obstack_init (&guard_obstack);
-  obstack_init (&output_obstack);
-}
-
-
-
-/*-----------------------.
-| Close the open file..  |
-`-----------------------*/
-
-void
-close_files (void)
-{
-  xfclose (finput);
-}
 
 /*---------------------------.
 | Produce the output files.  |