0070-cppif.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
---
0070-cppif.c (114B)
---
1 #if 1
2 int x = 0;
3 #endif
4
5 #if 0
6 int x = 1;
7 #if 1
8 X
9 #endif
10 #ifndef AAA
11 X
12 #endif
13 #endif
14
15 int main()
16 {
17 return x;
18 }