diff options
Diffstat (limited to 'src/float/FLT_MAX_EXP.h')
-rw-r--r-- | src/float/FLT_MAX_EXP.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/float/FLT_MAX_EXP.h b/src/float/FLT_MAX_EXP.h new file mode 100644 index 00000000..d912e1ec --- /dev/null +++ b/src/float/FLT_MAX_EXP.h @@ -0,0 +1,12 @@ +#include <float.h> +#define FLT_MAX_EXP (128) + +/** float maximum exponent **/ + +/*** +is the largest integer for which +POW(IDENTIFIER(FLT_RADIX), THIS() - 1) is a finite TYPE(float). +***/ +/* +STDC(1) +*/ |