mirror of
https://github.com/opnsense/src.git
synced 2026-02-14 00:04:14 -05:00
8 lines
189 B
C
8 lines
189 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 $ */
|
|
|
|
int yywrap()
|
|
{
|
|
return 1;
|
|
}
|