[gnu.utils.bug] previous problems with bison and gcc-1.35 compilation

wouk@cs.duke.edu (Arthur Wouk) (05/06/89)

here is the summary of the error.

	gcc -g -DUSG -c reduce.c
...
reduce.c: In function print_notices:
reduce.c:543: `fixed_outfiles' undeclared (first use this function)
reduce.c:543: (Each undeclared identifier is reported only once
reduce.c:543: for each function it appears in.)
*** Error code 1

Stop.

SOLUTION:

fixed_outfiles is to be declared extern wherever it appears. you
omitted the declaration just prior to line 543 in reduce.c. i found
this by checking all occurences of fixed_outfiles in the code and
seeing that it had been accepted in three preceding modules as
defined. a minor correction produced success in compilation.