scc

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

0235-comment.c (218B)


      1 /***********************************************************
      2 ************************************************************/
      3 #ifndef WHAT
      4 # define WHAT 1
      5 int x;
      6 /*
      7  *  A comment
      8  */
      9 
     10 int
     11 main(void)
     12 {
     13 	return x;
     14 }
     15 #endif