blob: 995a21c2dd005e9050f50dd516a3a8a3198ca1fb (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <signal.h>
#define SIGFPE (4)
/** floating point exception **/
/***
is a signal that indicates an error resulting from invalid arithmetic
operations, such as division by zero or overflows.
***/
/*
STDC(1)
*/
|