Include uses tokenizer

This commit is contained in:
Devine Lu Linvega 2024-03-26 10:49:29 -07:00
parent 553e559e4e
commit e871d8dc0c
1 changed files with 1 additions and 4 deletions

View File

@ -300,12 +300,9 @@ static int
doinclude(char *filename)
{
FILE *f;
char w[0x40];
if(!(f = fopen(setlocation(filename), "r")))
return error_top("Include missing", filename);
while(fscanf(f, "%63s", w) == 1)
if(!parse(w, f))
return error_top("Unknown token", w);
tokenize(f);
fclose(f);
return 1;
}