diff options
-rw-r--r-- | mypc.c (renamed from pc.c) | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -2,6 +2,12 @@ #include <stdlib.h> #include <assert.h> +#include "y.tab.h" +#include "pc.h" + +extern char *yytext; +extern int line_num; + char* pretty_type(t) int t; { @@ -119,3 +125,10 @@ char* msg; #endif return 0; } + +int main() +{ + yyparse(); + + return 0; +} |