Checking in Martin's changes.

This commit is contained in:
em
1985-01-17 14:10:27 +00:00
parent e75b8772ca
commit 6512a304a0
8 changed files with 39 additions and 31 deletions

View File

@@ -6,13 +6,15 @@ static char rcs_id[] = "$Header$" ;
/* compile the next program in the list */
/* Here we should open the input file. (for the future) */
FILE *yyin;
compileprogram()
compileprogram(dummyprog)
char *dummyprog;
{
while( getline())
yyparse();
fclose(yyin);
(void) yyparse();
(void) fclose(yyin);
}