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