9 lines
192 B
C
9 lines
192 B
C
|
/* libyywrap - flex run-time support library "yywrap" function */
|
||
|
|
||
|
/* $Header: /cvsroot/src/usr.bin/lex/Attic/libyywrap.c,v 1.1 1994/02/04 19:15:30 jtc Exp $ */
|
||
|
|
||
|
int yywrap()
|
||
|
{
|
||
|
return 1;
|
||
|
}
|