summaryrefslogtreecommitdiff
path: root/src/lextest/lextest.c
blob: 29542c89506e2eb21f65d15f74e057e591ac0dcd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
** lextest.c
**
** tests for flex 2.5.3 bug
*/

int main()
{
	yylex();
	return 0;
}

int yywrap()
{
	return 1;
};