blob: b5e1a15464b1f66a4198622e1e67c1fd65cfe869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* libyywrap - flex run-time support library "yywrap" function */
/* $Header: /cvs/OpenBSD/src/usr.bin/lex/libyywrap.c,v 1.1 1995/10/18 08:45:31 deraadt Exp $ */
#include <sys/cdefs.h>
int yywrap __P((void));
int yywrap()
{
return 1;
}
|