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