Home
       0120-funpar.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
       ---
       0120-funpar.c (58B)
       ---
            1 int
            2 f(int f)
            3 {
            4         return f;
            5 }
            6 
            7 int
            8 main()
            9 {
           10         return f(0);
           11 }