scc

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

0197-cppcomment.c (132B)


      1 #define TEST1 1 // comment
      2 #define TEST2 2
      3 
      4 int
      5 main(void)
      6 {
      7 	if (TEST1 != 1)
      8 		return 1;
      9 	if (TEST2 != 2)
     10 		return 2;
     11 	return 0;
     12 }