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

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

int
yywrap()
{
	return 1;
};