2000-05-28 13:40:48 +00:00
|
|
|
/*
|
2014-06-30 05:10:35 -04:00
|
|
|
** abort.c
|
|
|
|
**
|
|
|
|
** Ullrich von Bassewitz, 02.06.1998
|
|
|
|
*/
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2003-03-14 00:02:31 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <signal.h>
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
void abort (void)
|
|
|
|
{
|
2003-03-14 00:02:31 +00:00
|
|
|
raise (SIGABRT);
|
2000-05-28 13:40:48 +00:00
|
|
|
fputs ("ABNORMAL PROGRAM TERMINATION\n", stderr);
|
2019-11-17 13:13:43 +01:00
|
|
|
exit (EXIT_ABORT);
|
2000-05-28 13:40:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|