/* $OpenBSD: libyywrap.c,v 1.3 1996/07/13 22:22:06 millert Exp $ */ /* libyywrap - flex run-time support library "yywrap" function */ /* $Header: /cvsrepo/anoncvs/cvs/src/usr.bin/lex/libyywrap.c,v 1.3 1996/07/13 22:22:06 millert Exp $ */ #include int yywrap __P((void)); int yywrap() { return 1; }