1 extern int abort();
2 typedef int (*frob)();
3 frob f[] = {abort};
main()4 main()
5 {
6   exit(0);
7 }
8