4
spl0
8y

/*
* uk.c
*/

#include <assert.h>
#include <signal.h>
#include <stdlib.h>

void brexit()
{
kill(getpid(), SIGABRT);
}

main()
{
/* THE END */
atexit(brexit);
}

Comments
Add Comment