BSD's finite expects a double; make glibc 2.23 happy

This commit is contained in:
Andrew Johnson
2016-04-27 10:28:01 -05:00
parent 93597e20d5
commit fdda079b8f

View File

@@ -19,7 +19,7 @@ extern "C" {
#ifdef isfinite
# undef finite
# define finite(x) isfinite(x)
# define finite(x) isfinite((double)x)
#endif
epicsShareExtern float epicsNAN;