File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
java.base/unix/native/libjava Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -204,7 +204,7 @@ inline int g_isnan(double f) { return isnand(f); }
204204#elif defined(__APPLE__)
205205inline int g_isnan (double f) { return isnan (f); }
206206#elif defined(LINUX) || defined(_ALLBSD_SOURCE)
207- inline int g_isnan (float f) { return isnanf (f); }
207+ inline int g_isnan (float f) { return isnan (f); }
208208inline int g_isnan (double f) { return isnan (f); }
209209#else
210210#error "missing platform-specific definition here"
Original file line number Diff line number Diff line change 3737#define ISNAND (d ) isnan(d)
3838#elif defined(__linux__ ) || defined(_ALLBSD_SOURCE )
3939#include <math.h>
40- #define ISNANF (f ) isnanf (f)
40+ #define ISNANF (f ) isnan (f)
4141#define ISNAND (d ) isnan(d)
4242#elif defined(_AIX )
4343#include <math.h>
You can’t perform that action at this time.
0 commit comments