mirror of
https://github.com/freebsd/freebsd-src
synced 2024-11-05 18:22:52 +00:00
8387c24d79
Reviewed by: Geoff.
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;
|
|
}
|