Home
       0128-kr_names.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
       ---
       0128-kr_names.c (95B)
       ---
            1 int f(a,b);
            2 
            3 int
            4 f(a,b,c) char b;
            5 {
            6         return a - c + b;
            7 }
            8 
            9 int
           10 main(void)
           11 {
           12         return f(1,0,1);
           13 }