int (f)(int x);

int g()
{
  return f(3);
}

int f(int x)
{
  return x;
}


syntax highlighted by Code2HTML, v. 0.9.1