1 /* $OpenBSD: libyywrap.c,v 1.6 2003/07/28 20:38:31 deraadt Exp $ */ 2 3 /* libyywrap - flex run-time support library "yywrap" function */ 4 5 /* $Header: /home/cvs/src/usr.bin/lex/libyywrap.c,v 1.6 2003/07/28 20:38:31 deraadt Exp $ */ 6 7 #include <sys/cdefs.h> 8 9 int yywrap(void); 10 11 int 12 yywrap(void) 13 { 14 return 1; 15 } 16