921e5a0eb4
From-SVN: r14840
8 lines
85 B
C
8 lines
85 B
C
extern int abort();
|
|
typedef int (*frob)();
|
|
frob f[] = {abort};
|
|
main()
|
|
{
|
|
exit(0);
|
|
}
|