summaryrefslogtreecommitdiffstats
path: root/tests/langbench/loop.l
blob: f62ff011f914bc77874792e32a151c434855f161 (plain)
1
2
3
4
5
6
7
8
9
10
11
void
doit(int n)
{
	while (n-- > 0);
}

void
main()
{
	doit(1000000);
}