diff options
Diffstat (limited to 'src/float/FLT_EPSILON.c')
-rw-r--r-- | src/float/FLT_EPSILON.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/float/FLT_EPSILON.c b/src/float/FLT_EPSILON.c new file mode 100644 index 00000000..31640457 --- /dev/null +++ b/src/float/FLT_EPSILON.c @@ -0,0 +1,16 @@ +#include <float.h> +#define FLT_EPSILON (1.192093E-07) + +/** float epsilon **/ + +/*** +is the difference between LITERAL(1) and the next smallest number +representable as a TYPE(float). +***/ + +/* +VALUE_MIN(1e-5) +*/ +/* +STDC(1) +*/ |