libyywrap.c revision 1.2
1/*	$OpenBSD: libyywrap.c,v 1.2 1996/06/26 05:35:37 deraadt 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.2 1996/06/26 05:35:37 deraadt Exp $ */
6
7#include <sys/cdefs.h>
8
9int yywrap __P((void));
10
11int yywrap()
12	{
13	return 1;
14	}
15