libyywrap.c revision 1.4
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: /usr/local/opengrok/home/cvs-mirror/mirrors/openbsd/src/usr.bin/lex/libyywrap.c,v 1.4 1996/12/10 22:22:03 millert Exp $ */
6
7#include <sys/cdefs.h>
8
9int yywrap __P((void));
10
11int
12yywrap()
13	{
14	return 1;
15	}
16