cc9c2b575d
- don't dup extern declarations on each file because they end up being inconsistent (yyerror).
9 lines
144 B
C
9 lines
144 B
C
extern char *yytext;
|
|
extern int yylineno;
|
|
extern FILE *yyin;
|
|
|
|
int yylex(void);
|
|
int yyerror(const char *);
|
|
|
|
struct params *cgdparsefile(FILE *);
|