ack/lang/basic/src.old/compile.c

21 lines
304 B
C
Raw Normal View History

#include "bem.h"
1984-11-27 23:13:28 +00:00
#ifndef NORSCID
static char rcs_id[] = "$Header$" ;
#endif
/* compile the next program in the list */
1985-01-17 14:10:27 +00:00
/* Here we should open the input file. (for the future) */
FILE *yyin;
1985-01-17 14:10:27 +00:00
compileprogram(dummyprog)
char *dummyprog;
{
while( getline())
1985-01-17 14:10:27 +00:00
(void) yyparse();
(void) fclose(yyin);
}