/*** * Shane Beasley * EECS 473: Compiler Design * Machine Problem 4: Using Bison ***/ #ifndef DECLS_H #define DECLS_H #include #include extern struct filepos_t { size_t line, column; } tokenPos; extern "C" { int yylex (void); } int yyparse (void); void yyrestart (FILE *); #endif