xref: /openbsd-src/usr.bin/lex/libyywrap.c (revision a28daedfc357b214be5c701aa8ba8adb29a7f1c2)
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