SBSPSS/Utils/Parser Generator/SOURCE/yysparse.c
2000-12-08 20:40:33 +00:00

23 lines
420 B
C

/************************************************************
yysparse.c
This file can be freely modified for the generation of
custom code.
Copyright (c) 1999 Bumble-Bee Software Ltd.
************************************************************/
#include "yacc.h"
#ifdef YYPROTOTYPE
int YYCDECL yyparse(void)
#else
int YYCDECL yyparse()
#endif
{
int n = yysetup();
if (n != 0) {
return n;
}
return yywork();
}