blob: 38fdb2a8deced1436f1cee5ba3d44804acc59901 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <float.h>
#define DBL_MAX_EXP (1024)
/** double maximum exponent **/
/***
is the largest integer for which
POW(IDENTIFIER(FLT_RADIX),THIS() - 1) is a finite TYPE(double).
***/
/*
STDC(1)
*/
|