Home
       0182-voidcast.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
       ---
       0182-voidcast.c (137B)
       ---
            1 int i;
            2 char c;
            3 float f;
            4 int *ptr;
            5 enum {
            6         INT
            7 } e;
            8 
            9 int
           10 main()
           11 {
           12 
           13         (void) i;
           14         (void) c;
           15         (void) f;
           16         (void) ptr;
           17         (void) e;
           18 
           19         return 0;
           20 }