xref: /openbsd-src/usr.bin/lex/libyywrap.c (revision b2ea75c1b17e1a9a339660e7ed45cd24946b230e)
1 /*	$OpenBSD: libyywrap.c,v 1.4 1996/12/10 22:22:03 millert Exp $	*/
2 
3 /* libyywrap - flex run-time support library "yywrap" function */
4 
5 /* $Header: /home/cvs/src/usr.bin/lex/libyywrap.c,v 1.4 1996/12/10 22:22:03 millert Exp $ */
6 
7 #include <sys/cdefs.h>
8 
9 int yywrap __P((void));
10 
11 int
12 yywrap()
13 	{
14 	return 1;
15 	}
16