On Sun, Oct 12, 2003 at 21:53:10 +0200, Andreas Tille wrote:
> The critical line is:
>
> FILE *yyin = {stdin}, *yyout = {stdout};
Replace that with
FILE *yyin, *yyout;
... in main() ...
yyin = stdin;
yyout = stdout;
> wnlex.c:75: error: initializer element is not cons
Hi,
I seem to have a transition problem in a package of mine:
The critical line is:
FILE *yyin = {stdin}, *yyout = {stdout};
In the first line of the file in question
#include
is included. The error is.
gcc -I/usr/include -O -DUNIX -c -o wnlex.o wnlex.c
wnlex.c:75: error: initia
2 matches
Mail list logo