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
derives_free (void)
{
free (derives[0]);
free (derives);
XFREE (derives[0]);
XFREE (derives);
}