NetBSD/usr.bin/lex/libyywrap.c

18 lines
255 B
C
Raw Normal View History

/* libyywrap - flex run-time support library "yywrap" function */
/* $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>
#if HAVE_CONFIG_H
#include <config.h>
#endif
1995-06-05 23:44:52 +04:00
int yywrap __P((void));
1996-12-10 10:18:37 +03:00
int
yywrap()
{
return 1;
}