xref: /openbsd-src/usr.bin/lex/libyywrap.c (revision 50b7afb2c2c0993b0894d4e34bf857cb13ed9c80)
1 /*	$OpenBSD: libyywrap.c,v 1.7 2012/12/05 23:20:25 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.7 2012/12/05 23:20:25 deraadt Exp $ */
6 
7 int yywrap(void);
8 
9 int
10 yywrap(void)
11 {
12 	return 1;
13 }
14