minix/commands/lex/libyywrap.c

9 lines
117 B
C
Raw Normal View History

2005-07-11 14:54:10 +02:00
/* libyywrap - flex run-time support library "yywrap" function */
/* $Header$ */
2009-08-17 20:49:07 +02:00
int yywrap(void)
2005-07-11 14:54:10 +02:00
{
return 1;
}