shithub: scc

ref: cd5a0e5dbf567454d207e7ae7d22626e0c0845be
dir: /tests/execute/0006-whilestmt.c/

View raw version

int
main()
{
	int x;

	x = 50;
	while (x)
		x = x - 1;
	return x;
}