NetBSD/usr.bin/lex/libyywrap.c
tv 9fbd88883c Roll in fixes to permit cross-compiling from non-NetBSD hosts. This
round has been tested on Solaris/x86 and Linux hosts.

* Add host tools cap_mkdb, ctags, m4, uudecode.
* Protect __RCSID() and __COPYRIGHT() better.
* Reduce the number of places that need to include "config.h", to keep
  sources closer to their "vanilla" versions.
* Add more compat #defines and autoconf-checked functions.
2002-01-31 22:43:33 +00:00

18 lines
255 B
C

/* libyywrap - flex run-time support library "yywrap" function */
/* $NetBSD: libyywrap.c,v 1.6 2002/01/31 22:43:54 tv Exp $ */
#include <sys/cdefs.h>
#if HAVE_CONFIG_H
#include <config.h>
#endif
int yywrap __P((void));
int
yywrap()
{
return 1;
}