NetBSD/usr.bin/lex/libyywrap.c

14 lines
243 B
C
Raw Normal View History

/* libyywrap - flex run-time support library "yywrap" function */
1996-12-10 10:18:37 +03:00
/* $Header: /cvsroot/src/usr.bin/lex/Attic/libyywrap.c,v 1.4 1996/12/10 07:18:48 mikel Exp $ */
1995-06-05 23:44:52 +04:00
#include <sys/cdefs.h>
int yywrap __P((void));
1996-12-10 10:18:37 +03:00
int
yywrap()
{
return 1;
}