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