Home
       0103-voidparm.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
       ---
       0103-voidparm.c (60B)
       ---
            1 int
            2 foo(void)
            3 {
            4         return 0;
            5 }
            6 
            7 int
            8 main()
            9 {
           10         return foo();
           11 }