Hi Collin,
In the yacc test I see warnings like this:
main.c:4:10: error: implicit declaration of function 'yyparse'
[-Wimplicit-function-declaration]
4 | return yyparse ();
| ^~~
and some for yylex which is declared, but with an empty parameter list
Collin Funk writes:
> In the yacc test I see warnings like this:
>
> main.c:4:10: error: implicit declaration of function ‘yyparse’
> [-Wimplicit-function-declaration]
> 4 | return yyparse ();
> | ^~~
>
> and some for yylex which is declared, but with an empty parameter
In the yacc test I see warnings like this:
main.c:4:10: error: implicit declaration of function ‘yyparse’
[-Wimplicit-function-declaration]
4 | return yyparse ();
| ^~~
and some for yylex which is declared, but with an empty parameter list
instead of void.
I assume this