1 typedef void ft(int);
2 volatile ft f;
f2(ft * p)3 void f2(ft *p __attribute__((noreturn)))
4 {
5   p = f;
6 }
7