blob: b89e6ac1b2ccb6ef5ae19989fe7d6dabd88de287 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#include <float.h>
#define DBL_MANT_DIG (53)
/** double mantissa **/
/***
is the number of digits, in base-IDENTIFIER(FLT_RADIX), in the
floating-point significand for TYPE(double) variables. It is not necessarily
a constant value.
***/
/*
STDC(1)
*/
|