X-Git-Url: https://git.saurik.com/bison.git/blobdiff_plain/69cecfeb3856a95f13a50829607f98bef646a413..52d5733ff0ab2eb9361b73913a3dd2acdffba4ef:/src/derives.c diff --git a/src/derives.c b/src/derives.c index b41751c3..7e20fe5a 100644 --- a/src/derives.c +++ b/src/derives.c @@ -1,6 +1,6 @@ /* Match rules with nonterminals for bison, - Copyright (C) 1984, 1989, 2000, 2001, 2002 Free Software + Copyright (C) 1984, 1989, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -65,7 +65,7 @@ void derives_compute (void) { symbol_number i; - int r; + rule_number r; rule **q; /* DSET[NTERM - NTOKENS] -- A linked list of the numbers of the rules @@ -116,6 +116,6 @@ derives_compute (void) void derives_free (void) { - free (derives[0]); - free (derives); + XFREE (derives[0]); + XFREE (derives); }