23 lines
238 B
C
23 lines
238 B
C
/*
|
|
* abort.c
|
|
*
|
|
* Ullrich von Bassewitz, 02.06.1998
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <signal.h>
|
|
|
|
|
|
|
|
void abort (void)
|
|
{
|
|
raise (SIGABRT);
|
|
fputs ("ABNORMAL PROGRAM TERMINATION\n", stderr);
|
|
exit (3);
|
|
}
|
|
|
|
|
|
|