OSDN Git Service

Add missing extern.h file
authorMarc G. Fournier <scrappy@hub.org>
Fri, 13 Feb 1998 13:15:23 +0000 (13:15 +0000)
committerMarc G. Fournier <scrappy@hub.org>
Fri, 13 Feb 1998 13:15:23 +0000 (13:15 +0000)
src/interfaces/ecpg/preproc/extern.h [new file with mode: 0644]

diff --git a/src/interfaces/ecpg/preproc/extern.h b/src/interfaces/ecpg/preproc/extern.h
new file mode 100644 (file)
index 0000000..e9f5d8f
--- /dev/null
@@ -0,0 +1,13 @@
+/* variables */
+
+extern int debugging, braces_open;
+extern char * yytext;
+extern int yylineno, yyleng;
+extern FILE *yyin, *yyout;
+
+
+/* functions */
+
+extern void lex_init(void);
+extern char * input_filename;
+extern int yyparse(void);