blob: b438644327abf7e7afa42ecad7b506c5f4fa221c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#ifndef DBL_MANT_DIG
#error DBL_MANT_DIG not defined
#endif
#ifndef DBL_MAX_EXP
#error DBL_MAX_EXP not defined
#endif
#ifndef DBL_MIN_EXP
#error DBL_MIN_EXP not defined
#endif
#ifndef FLT_MANT_DIG
#error FLT_MANT_DIG not defined
#endif
#ifndef FLT_MAX_EXP
#error FLT_MAX_EXP not defined
#endif
#ifndef FLT_MIN_EXP
#error FLT_MIN_EXP not defined
#endif
#ifndef LDBL_MANT_DIG
#error LDBL_MANT_DIG not defined
#endif
#ifndef LDBL_MAX_EXP
#error LDBL_MAX_EXP not defined
#endif
#ifndef LDBL_MIN_EXP
#error LDBL_MIN_EXP not defined
#endif
|