blob: 1d6c588fa5c4a3bace4b2902564620171ca51d06 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <signal.h>
#define SIGILL (3)
/** illegal instruction **/
/***
is a signal indicating that the program has attempted to execute an illegal
or improperly formed instruction.
***/
/*
STDC(1)
*/
|