1984-11-27 22:11:59 +00:00
|
|
|
#include "bem.h"
|
|
|
|
|
1984-11-27 23:13:28 +00:00
|
|
|
#ifndef NORSCID
|
|
|
|
static char rcs_id[] = "$Header$" ;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
1984-11-27 22:11:59 +00:00
|
|
|
/* 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) */
|
1984-11-27 22:11:59 +00:00
|
|
|
|
|
|
|
FILE *yyin;
|
|
|
|
|
1985-01-17 14:10:27 +00:00
|
|
|
compileprogram(dummyprog)
|
|
|
|
char *dummyprog;
|
1984-11-27 22:11:59 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
while( getline())
|
1985-01-17 14:10:27 +00:00
|
|
|
(void) yyparse();
|
|
|
|
(void) fclose(yyin);
|
1984-11-27 22:11:59 +00:00
|
|
|
}
|