summaryrefslogtreecommitdiff
path: root/sys/src/liblex/yywrap.c
blob: 9c55d6fcd571b2523b05315773b9311d81020949 (plain)
1
2
3
4
5
6
7
8
9
#include	<u.h>
#include	<libc.h>
#include	<stdio.h>

int
yywrap(void)
{
	return 1;
}