NetBSD/usr.bin/lex/libyywrap.c

18 lines
272 B
C
Raw Normal View History

/* libyywrap - flex run-time support library "yywrap" function */
/* $NetBSD: libyywrap.c,v 1.7 2003/10/27 00:12:43 lukem Exp $ */
1995-06-05 23:44:52 +04:00
#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif
#include <sys/cdefs.h>
1995-06-05 23:44:52 +04:00
int yywrap __P((void));
1996-12-10 10:18:37 +03:00
int
yywrap()
{
return 1;
}