Commit 681f0590 authored by Lev Walkin's avatar Lev Walkin

DBL_TRUE_MIN is C11, make it portable

parent 19a2118f
......@@ -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];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment