• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 int f2(int i);
2 
f1(int i)3 int f1(int i)
4 {
5 	return f2(i) + i;
6 }
7