scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | 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 }