scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0221-ifdef.c (117B)


      1 #ifndef _H
      2 #define _H
      3 
      4 #define _PROTO(x, y) x()
      5 
      6 _PROTO(int putc, (int, FILE *));
      7 
      8 #endif
      9 
     10 int
     11 main()
     12 {
     13 	return 0;
     14 }