aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/external/c-testsuite/tests/single-exec/00014.c
blob: 487b3de311fa21525cf3832229a8248e6f336a8f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
int
main()
{
	int x;
	int *p;
	
	x = 1;
	p = &x;
	p[0] = 0;
	return x;
}