]> git.saurik.com Git - bison.git/blobdiff - src/gram.c
* src/output.c (GENERATE_OUTPUT_TABLE): Replace with...
[bison.git] / src / gram.c
index 75546603758b7f85cdd0711c89a657b357862e9d..3fc03d0e09600cd9f24a367a2c3fdea24c79e5b5 100644 (file)
@@ -159,3 +159,14 @@ grammar_dump (FILE *out, const char *title)
     }
   fprintf (out, "\n\n");
 }
+
+
+void
+grammar_free (void)
+{
+  XFREE (ritem);
+  free (rules + 1);
+  XFREE (token_translations);
+  /* Free the symbol table data structure.  */
+  symbols_free ();
+}