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 */
|
|
|
|
|
|
|
|
FILE *yyin;
|
|
|
|
|
|
|
|
compileprogram()
|
|
|
|
{
|
|
|
|
|
|
|
|
while( getline())
|
|
|
|
yyparse();
|
|
|
|
fclose(yyin);
|
|
|
|
}
|