blob: 682c8d4f25f31514b0aa480a552c05e055557c96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <float.h>
#define FLT_MIN_EXP (-125)
/** float minimum exponent **/
/***
is the smallest negative integer for which
POW(IDENTIFIER(FLT_RADIX), THIS() - 1) is a normalized TYPE(float).
***/
/*
STDC(1)
*/
|