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