summaryrefslogtreecommitdiff
path: root/usr.bin/lex/libyywrap.c
blob: a45ac10dcc5e05f76c9566f497cf7743ab8dbefe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*	$OpenBSD: libyywrap.c,v 1.5 2002/02/16 21:27:47 millert Exp $	*/

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

/* $Header: /cvs/OpenBSD/src/usr.bin/lex/libyywrap.c,v 1.5 2002/02/16 21:27:47 millert Exp $ */

#include <sys/cdefs.h>

int yywrap(void);

int
yywrap()
	{
	return 1;
	}