shithub: scc

ref: a4a8aee18eb929f1e24bc5fe0ee22ce7919750c8
dir: /tests/0039-sizeof.c/

View raw version
int
main()
{
	int x;
	if((sizeof (int) - 4))
		return 1;
	if((sizeof (&x) - 8))
		return 1;
	return 0;
}