ref: 62f0e08bbf82d768a2ef87af44b67b5547558d2f
dir: /tests/libc/execute/0004-abort.c/
#include <assert.h>
#include <stdio.h>
#include <signal.h>
#include <stdlib.h>
/*
output:
aborting
end:
*/
int
main(void)
{
printf("aborting\n");
assert(signal(SIGABRT, SIG_IGN) != SIG_ERR);
abort();
printf("borning\n");
return 0;
}