Adding yywrap to avoid flex specific dependencies

This commit is contained in:
Frederic Petrot 2002-05-02 15:40:17 +00:00
parent 6df179e3f3
commit 30cb8a1a90
1 changed files with 4 additions and 0 deletions

View File

@ -109,3 +109,7 @@ message [Mm][Ee][Ss][Ss][Aa][Gg][Ee]
. {ECHO;}
%%
int yywrap(void)
{
return 1;
}