home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Microsoft Programmer's Library 1.3
/
Microsoft-Programers-Library-v1.3.iso
/
sampcode
/
alde_c
/
misc
/
lib
/
dlibssrc
/
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);
}