1994-02-04 22:15:27 +03:00
|
|
|
/* libyywrap - flex run-time support library "yywrap" function */
|
|
|
|
|
2003-10-27 03:12:41 +03:00
|
|
|
/* $NetBSD: libyywrap.c,v 1.7 2003/10/27 00:12:43 lukem Exp $ */
|
1995-06-05 23:44:52 +04:00
|
|
|
|
2003-10-27 03:12:41 +03:00
|
|
|
#if HAVE_NBTOOL_CONFIG_H
|
|
|
|
#include "nbtool_config.h"
|
2002-02-01 01:43:33 +03:00
|
|
|
#endif
|
|
|
|
|
2003-10-27 03:12:41 +03:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
|
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;
|
|
|
|
}
|