9 lines
122 B
C
9 lines
122 B
C
#ifndef lint
|
|
static char sccsid[] = "@(#)yywrap.c 1.1 92/07/30 SMI"; /* from S5R2 1.2 */
|
|
#endif
|
|
|
|
yywrap()
|
|
{
|
|
return(1);
|
|
}
|