blob: 918a1f5d94b76932263d2d947712ee5fb7006043 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#define SIGABRT (6)
/** abnormal termination **/
/***
is a signal indicating that the program is being terminated abnormally,
such as when FUNCTION(abort) is called.
***/
/* Value selected to match requirements for COMMAND(kill) and COMMAND(trap). */
/*
STDC(1)
*/
|