DBL_TRUE_MIN is C11, make it portable

This commit is contained in:
Lev Walkin 2016-03-14 04:21:26 -07:00
parent 19a2118f3c
commit 681f0590d0
1 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,11 @@
#include <math.h>
#include <float.h>
/* C11 specifies DBL_TRUE_MIN, might not be immediately available. */
#ifndef DBL_TRUE_MIN
#define DBL_TRUE_MIN 4.9406564584124654E-324
#endif
#include <REAL.h>
static char reconstructed[2][512];