I added some packpatching
This commit is contained in:
@ -102,7 +102,10 @@ void print_tok(int tok) {
|
||||
int run(FILE *alpha) {
|
||||
int token;
|
||||
top = cur = init(CreateScope(NULL, 1, 1));
|
||||
Stack *s = S_Init();
|
||||
Stack *stack = S_Init();
|
||||
Stack *TrueList = S_Init();
|
||||
Stack *FalseList = S_Init();
|
||||
|
||||
|
||||
// If file is not found
|
||||
if (alpha == NULL) {
|
||||
@ -335,4 +338,4 @@ char *file_read_line(FILE *fp) {
|
||||
|
||||
str[len] = '\0';
|
||||
return str;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user