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