Checking in Martin's changes.

This commit is contained in:
em
1985-01-17 14:10:27 +00:00
parent f4fe5f16e9
commit 48edb88fe6
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);
}