r3384998.c   [plain text]


static void func1(void (*f)(void))
{
  f();
}
static void func2(void (*f)(void))
{
  func1(f);
}
main()
{
  func2(0);
}