From 6f84e9abca2d718c228e47b842cb91280cde706f Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Fri, 13 Dec 2002 07:57:20 +0000 Subject: [PATCH] Use free rather than XFREE. --- src/gram.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/gram.c b/src/gram.c index a0e1dc5..39045d7 100644 --- a/src/gram.c +++ b/src/gram.c @@ -1,4 +1,5 @@ -/* Allocate input grammar variables for bison, +/* Allocate input grammar variables for Bison. + Copyright (C) 1984, 1986, 1989, 2001, 2002 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -328,9 +329,9 @@ grammar_rules_never_reduced_report (const char *message) void grammar_free (void) { - XFREE (ritem); + free (ritem); free (rules); - XFREE (token_translations); + free (token_translations); /* Free the symbol table data structure. */ symbols_free (); free_merger_functions (); -- 2.7.4