mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-11 19:25:43 +00:00
11 lines
148 B
C
11 lines
148 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <signal.h>
|
|
|
|
void abort(void)
|
|
{
|
|
raise(SIGABRT);
|
|
fputs("Program aborted\n",stderr);
|
|
exit(20);
|
|
}
|