SBSPSS/Utils/Parser Generator/SOURCE/yyswrap.c

19 lines
359 B
C
Raw Normal View History

2000-12-08 21:40:33 +01:00
/************************************************************
yyswrap.c
This file can be freely modified for the generation of
custom code.
Copyright (c) 1999 Bumble-Bee Software Ltd.
************************************************************/
#include "lex.h"
#ifdef YYPROTOTYPE
int YYCDECL yywrap(void)
#else
int YYCDECL yywrap()
#endif
{
return 1;
}