blob: f1878ecf5c2f5a3737b168539396cd89477d0e81 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <signal.h>
#define SIGABRT (1)
/** abnormal termination **/
/***
is a signal indicating that the program is being terminated abnormally,
such as when FUNCTION(abort) is called.
***/
/*
STDC(1)
*/
|