shithub: scc

ref: 15d3cccf394c8c68e3d6e8311c3b50910ad23f91
dir: /tests/scc/execute/0172-hexa.c/

View raw version
int
main(void)
{
	if (0xa != 0xA ||
	    0xb != 0xB ||
	    0xc != 0xC ||
	    0xd != 0xD ||
	    0xe != 0xE ||
	    0xf != 0xF) {
		return 1;
	}
	return 0;
}