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

	return *p;
}