- Fixed the yywrap dependency warning in scanner.l

This commit is contained in:
ccremers 2004-07-17 19:35:54 +00:00
parent b70255ddbc
commit 570933612f
2 changed files with 6 additions and 5 deletions

View File

@ -70,11 +70,6 @@ const char *progname = "scyther";
*/
const char *releasetag = "alpha2-devel";
int yywrap (void)
{
return 0;
}
//! The main body, as called by the environment.
int
main (int argc, char **argv)

View File

@ -151,6 +151,12 @@ void strings_cleanup(void)
}
}
int yywrap (void)
{
return 0;
}
/*
void mkval(void);
void mktext(void);