Home
       0083-voidret.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
       ---
       0083-voidret.c (74B)
       ---
            1 void
            2 voidfn()
            3 {
            4     return;
            5 }
            6 
            7 int
            8 main()
            9 {
           10     voidfn();
           11     return 0;
           12 }