Undo XFREE change; we assume C89 compiler, not C89 library.

This commit is contained in:
Paul Eggert
2002-12-13 08:22:26 +00:00
parent 6c5f863aec
commit e59a68718b
2 changed files with 4 additions and 4 deletions

View File

@@ -116,6 +116,6 @@ derives_compute (void)
void void
derives_free (void) derives_free (void)
{ {
free (derives[0]); XFREE (derives[0]);
free (derives); XFREE (derives);
} }

View File

@@ -329,9 +329,9 @@ grammar_rules_never_reduced_report (const char *message)
void void
grammar_free (void) grammar_free (void)
{ {
free (ritem); XFREE (ritem);
free (rules); free (rules);
free (token_translations); XFREE (token_translations);
/* Free the symbol table data structure. */ /* Free the symbol table data structure. */
symbols_free (); symbols_free ();
free_merger_functions (); free_merger_functions ();