9 lines
200 B
C
9 lines
200 B
C
/* libyywrap - flex run-time support library "yywrap" function */
|
|
|
|
/* $Header: /cvsroot/src/gnu/usr.bin/lex/lib/Attic/libyywrap.c,v 1.1 1993/12/02 19:14:33 jtc Exp $ */
|
|
|
|
int yywrap()
|
|
{
|
|
return 1;
|
|
}
|