shithub: scc

ref: 1b51b30c2d7d831f8e8ef83b254fe6cd2052ff89
dir: /tests/libc/execute/0004-abort.c/

View raw version
#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;
}