shithub: scc

ref: 8bee0cb1862bc8c92ac43a8cee1ee21afad070b4
dir: /tests/execute/0039-sizeof.c/

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