/* ** abort.c ** ** Ullrich von Bassewitz, 02.06.1998 */ #include #include #include void abort (void) { raise (SIGABRT); fputs ("ABNORMAL PROGRAM TERMINATION\n", stderr); exit (EXIT_ABORT); }