xref: /plan9/sys/src/liblex/yywrap.c (revision 3e12c5d1bb89fc02707907988834ef147769ddaf)
1 #include	<u.h>
2 #include	<libc.h>
3 #include	<stdio.h>
4 
5 int
yywrap(void)6 yywrap(void)
7 {
8 	return 1;
9 }
10