summaryrefslogtreecommitdiff
path: root/usr.bin/lex/libyywrap.c
blob: 3c42a6d6c3a15488d511566d05660a1982087df7 (plain)
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: /cvs/OpenBSD/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;
}