]> git.saurik.com Git - bison.git/blobdiff - src/conflicts.c
Undo XFREE change; we assume C89 compiler, but not C89 library.
[bison.git] / src / conflicts.c
index 57d42d01e422700274da5695e5c59021153c5b56..fcfa735d18ea0a24150d6a5770ff3c022b69334d 100644 (file)
@@ -304,9 +304,9 @@ conflicts_solve (void)
 {
   state_number i;
   /* List of lookaheads on which we explicitly raise a syntax error.  */
-  symbol **errors = XMALLOC (symbol *, ntokens + 1);
+  symbol **errors = MALLOC (errors, ntokens + 1);
 
-  conflicts = XCALLOC (char, nstates);
+  CALLOC (conflicts, nstates);
   shiftset = bitset_create (ntokens, BITSET_FIXED);
   lookaheadset = bitset_create (ntokens, BITSET_FIXED);
   obstack_init (&solved_conflicts_obstack);