summaryrefslogtreecommitdiff
path: root/usr.bin/lex/libyywrap.c
blob: db715f998598a16308f20c737ce3e60fd3d1a67a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*	$OpenBSD: libyywrap.c,v 1.3 1996/07/13 22:22:06 millert Exp $	*/

/* libyywrap - flex run-time support library "yywrap" function */

/* $Header: /cvs/OpenBSD/src/usr.bin/lex/libyywrap.c,v 1.3 1996/07/13 22:22:06 millert Exp $ */

#include <sys/cdefs.h>

int yywrap __P((void));

int yywrap()
	{
	return 1;
	}