yytext is an array in lex, but a char * in flex

This commit is contained in:
ceriel 1991-01-18 09:43:04 +00:00
parent e94f2d7e1d
commit 92c55fa13a

View File

@ -41,7 +41,11 @@
#include "decl.h"
extern int lineno, yyleng;
#ifdef FLEX
extern char *yytext;
#else
extern char yytext[];
#endif
}