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