home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer 7500
/
MAX_PROGRAMMERS.iso
/
INFO
/
C
/
DLIBSSRC.ZIP
/
ABORT.C
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
C/C++ Source or Header
|
1987-07-14
|
243 b
|
13 lines
#include <stdio.h>
void abort()
/*
* Prints the message "Abnormal program termination" to stderr and
* calls _exit() with a status code of 3.
*/
{
fputs("Abnormal program termination\n", stderr);
fflush(stderr);
_exit(3);
}