blob: f05d4b1265bc046d3aa642d0a4d68e3c7eabb78b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#define ERANGE (2)
/** out of range **/
/***
is used to indicated that the result of an operation is too large or too small.
***/
/*
STDC(1)
*/
#ifdef __linux__
#undef ERANGE
#define ERANGE 34
#endif
|