diff options
-rw-r--r-- | pc.y | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -1,14 +1,19 @@ %{ +#include <stdlib.h> +#include <stddef.h> -#include "pc.h" +#include "tree.h" #include "y.tab.h" -#include "sem_check.h" +#include "pc.h" +/*#include "sem_check.h"*/ /* TODO: - Add checkid() to counter mkid() */ +extern int yylex(); + %} %union { |