summaryrefslogtreecommitdiff
path: root/usr.bin/lex/libyywrap.c
blob: 4c1d6f19d6c606ef7166f85bd6748e28f3bdfca6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/* libyywrap - flex run-time support library "yywrap" function */

/* $NetBSD: libyywrap.c,v 1.7 2003/10/27 00:12:43 lukem Exp $ */

#if HAVE_NBTOOL_CONFIG_H
#include "nbtool_config.h"
#endif

#include <sys/cdefs.h>

int yywrap __P((void));

int
yywrap()
	{
	return 1;
	}