=================================================================== RCS file: /cvs/cvs/blind/parse.y,v retrieving revision 1.13 retrieving revision 1.15 diff -u -p -r1.13 -r1.15 --- blind/parse.y 2022/03/29 21:23:50 1.13 +++ blind/parse.y 2022/04/03 13:52:00 1.15 @@ -25,6 +25,16 @@ #include "config.h" #include "log.h" +static struct file { + FILE *stream; + char *name; + size_t ungetpos; + size_t ungetsize; + u_char *ungetbuf; + int eof_reached; + int lineno; +} *f; + int lookup(char *); int igetc(void); int lgetc(int); @@ -430,7 +440,7 @@ config_load(struct blind *temp) return (-1); } - yyparse(); + yyparse(); // setup