1987-03-09 15:15:03 +00:00
|
|
|
/*
|
|
|
|
* (c) copyright 1987 by the Vrije Universiteit, Amsterdam, The Netherlands.
|
|
|
|
* See the copyright notice in the ACK home directory, in the file "Copyright".
|
|
|
|
*/
|
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
|
|
|
}
|