summaryrefslogtreecommitdiffstats
path: root/usr.bin/lex/libyywrap.c
blob: 7eb697fda614c250085a18fefab853ce9e8fce3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*	$OpenBSD: libyywrap.c,v 1.7 2012/12/05 23:20:25 deraadt Exp $	*/

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

/* $Header: /home/cvs/src/usr.bin/lex/libyywrap.c,v 1.7 2012/12/05 23:20:25 deraadt Exp $ */

int yywrap(void);

int
yywrap(void)
{
	return 1;
}