0172-hexa.c - scc - simple c99 compiler
HTML git clone git://git.simple-cc.org/scc
DIR Log
DIR Files
DIR Refs
DIR Submodules
DIR README
DIR LICENSE
---
0172-hexa.c (159B)
---
1 int
2 main(void)
3 {
4 if (0xa != 0xA ||
5 0xb != 0xB ||
6 0xc != 0xC ||
7 0xd != 0xD ||
8 0xe != 0xE ||
9 0xf != 0xF) {
10 return 1;
11 }
12 return 0;
13 }