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