OpenBSD-4.6/usr.bin/lex/libyywrap.c

/*	$OpenBSD: libyywrap.c,v 1.6 2003/07/28 20:38:31 deraadt Exp $	*/

/* libyywrap - flex run-time support library "yywrap" function */

/* $Header: /cvs/src/usr.bin/lex/libyywrap.c,v 1.6 2003/07/28 20:38:31 deraadt Exp $ */

#include <sys/cdefs.h>

int yywrap(void);

int
yywrap(void)
{
	return 1;
}