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