* src/ltlparse/ltlscan.ll: Use ltlyy as %prefix.

* src/ltlparse/parsedecl.hh (YY_DECL): Rename yylex to ltlyylex.
* src/ltlparse/ltlparse.yy: Define yylex as ltlyylex.
This commit is contained in:
Alexandre Duret-Lutz 2003-06-04 14:03:30 +00:00
parent c4c90de3f6
commit 3fb593e542
5 changed files with 61 additions and 49 deletions

View file

@ -5,10 +5,9 @@
#include "location.hh"
# define YY_DECL \
int yylex (yystype *yylval, yy::Location *yylloc)
int ltlyylex (yystype *yylval, yy::Location *yylloc)
YY_DECL;
void flex_set_buffer(const char *buf);
#endif // SPOT_LTLPARSE_PARSEDECL_HH