URI:
       0235-comment.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
       ---
       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