NetBSD/usr.bin/lex/libyywrap.c
jtc d111379d91 The Lex library is now built from ~/lib/libl by pulling the appropriate
sources from ~/usr.bin/lex.  This will allow us to start "importing"
future flex releases.
1994-02-04 19:15:27 +00:00

9 lines
192 B
C

/* libyywrap - flex run-time support library "yywrap" function */
/* $Header: /cvsroot/src/usr.bin/lex/Attic/libyywrap.c,v 1.1 1994/02/04 19:15:30 jtc Exp $ */
int yywrap()
{
return 1;
}