aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00009.c
blob: 3defb01badef8e78b824760ae9d5694dcc0c5e80 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
int
main()
{
	int x;
	
	x = 1;
	x = x * 10;
	x = x / 2;
	x = x % 3;
	return x - 2;
}