14 lines
144 B
C
14 lines
144 B
C
#include "bem.h"
|
|
|
|
/* compile the next program in the list */
|
|
|
|
FILE *yyin;
|
|
|
|
compileprogram()
|
|
{
|
|
|
|
while( getline())
|
|
yyparse();
|
|
fclose(yyin);
|
|
}
|