mirror of
https://github.com/opnsense/src.git
synced 2026-02-12 15:24:40 -05:00
9 lines
202 B
C
9 lines
202 B
C
/* libyywrap - flex run-time support library "yywrap" function */
|
|
|
|
/* $Header: /home/daffy/u0/vern/flex/RCS/libyywrap.c,v 1.1 93/10/02 15:23:09 vern Exp $
|
|
* $FreeBSD$ */
|
|
|
|
int yywrap()
|
|
{
|
|
return 1;
|
|
}
|