scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | 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 }