Sebastian Pipping <[EMAIL PROTECTED]> writes:
> instead of
> "symrec *putsym (char const *, func_t);"
> it must be
> "symrec *putsym (char const *, int);"
Thanks again. I installed this patch to fix it:
2005-02-24 Paul Eggert <[EMAIL PROTECTED]>
* doc/bison.texinfo (Mfcalc Symtab): Correct the prototype for
putsym. Typo reported by Sebastian Piping.
--- bison.texinfo.~1.140.~ 2005-02-23 01:12:41 -0800
+++ bison.texinfo 2005-02-24 09:17:28 -0800
@@ -2272,7 +2272,7 @@ typedef struct symrec symrec;
/* The symbol table: a chain of `struct symrec'. */
extern symrec *sym_table;
-symrec *putsym (char const *, func_t);
+symrec *putsym (char const *, int);
symrec *getsym (char const *);
@end group
@end smallexample