0147-intern_cpp.c - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
       0147-intern_cpp.c (191B)
       ---
            1 #define x(y)  (y)
            2 
            3 int
            4 main(void)
            5 {
            6         int y;
            7         char *p;
            8 
            9         p = __FILE__;
           10         y = __LINE__;
           11         p = __DATE__;
           12         y = __STDC__;
           13         p = __TIME__;
           14         y = __STDC_HOSTED__;
           15         y = __SCC__;
           16         y = x(1);
           17 
           18         return 0;
           19 }