ref: 6853b1e9d0763d49d00264f9c1cd3edc25c3299b
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;
}