blob: 5d6da2b4ab42442cdec2eed7a855b8369909cb1d (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <signal.h>
#define SIGSEGV (5)
/** segmentation fault **/
/***
is a signal that indicates the program is attempting to access an invalid
memory address.
***/
/*
STDC(1)
*/
|