NetBSD/usr.bin/lex/libyywrap.c

9 lines
192 B
C
Raw Normal View History

/* 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;
}