blob: f83fb281d02e64c578b4c45c89324fd4eb1319f6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* libyywrap - flex run-time support library "yywrap" function */
/* $NetBSD: libyywrap.c,v 1.5 1998/01/05 05:15:54 perry Exp $ */
#include <sys/cdefs.h>
int yywrap __P((void));
int
yywrap()
{
return 1;
}
|