version 1.17, 2006/03/11 23:14:53 |
version 1.19, 2014/08/09 06:08:11 |
|
|
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. |
* |
* |
* $OpenXM: OpenXM_contrib2/asir2000/parse/pvar.c,v 1.16 2006/02/08 02:11:19 noro Exp $ |
* $OpenXM: OpenXM_contrib2/asir2000/parse/pvar.c,v 1.18 2006/06/21 09:46:06 noro Exp $ |
*/ |
*/ |
#include "ca.h" |
#include "ca.h" |
#include "parse.h" |
#include "parse.h" |
Line 68 void mkpvs(char *fname) |
|
Line 68 void mkpvs(char *fname) |
|
buf = ALLOCA(strlen("undeclared function "+strlen(fname)+10)); |
buf = ALLOCA(strlen("undeclared function "+strlen(fname)+10)); |
sprintf(buf,"undeclared function `%s'",fname); |
sprintf(buf,"undeclared function `%s'",fname); |
yyerror(buf); |
yyerror(buf); |
|
error("cannot continue to read inputs"); |
} |
} |
} |
} |
pvs = (VS)MALLOC(sizeof(struct oVS)); |
pvs = (VS)MALLOC(sizeof(struct oVS)); |
Line 324 void closecurrentinput() |
|
Line 325 void closecurrentinput() |
|
PCLOSE(asir_infile->fp); |
PCLOSE(asir_infile->fp); |
#endif |
#endif |
asir_infile = NEXT(asir_infile); |
asir_infile = NEXT(asir_infile); |
resetpvs(); |
|
} |
} |
|
|
void resetpvs() |
void resetpvs() |