blob: 64682b58bac72ab5b0e3e4b7602be9ccba9da292 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* $OpenBSD: libyywrap.c,v 1.6 2003/07/28 20:38:31 deraadt Exp $ */
/* libyywrap - flex run-time support library "yywrap" function */
/* $Header: /cvs/OpenBSD/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;
}
|