/*** * Shane Beasley * EECS 473: Compiler Design * Machine Problem 4: Using Bison ***/ #include "decls.h" #include #include int main (int argc, const char *argv[]) { for (int i = 1; i < argc; i++) { yyrestart(fopen(argv[i], "r")); yyparse(); } return EXIT_SUCCESS; }