mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
9 lines
189 B
C
9 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;
|
||
|
}
|