1994-02-04 22:15:27 +03:00
|
|
|
/* libyywrap - flex run-time support library "yywrap" function */
|
|
|
|
|
2002-02-01 01:43:33 +03:00
|
|
|
/* $NetBSD: libyywrap.c,v 1.6 2002/01/31 22:43:54 tv Exp $ */
|
1995-06-05 23:44:52 +04:00
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
2002-02-01 01:43:33 +03:00
|
|
|
#if HAVE_CONFIG_H
|
|
|
|
#include <config.h>
|
|
|
|
#endif
|
|
|
|
|
1995-06-05 23:44:52 +04:00
|
|
|
int yywrap __P((void));
|
1994-02-04 22:15:27 +03:00
|
|
|
|
1996-12-10 10:18:37 +03:00
|
|
|
int
|
|
|
|
yywrap()
|
1994-02-04 22:15:27 +03:00
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|