< prev index next >

src/java.base/unix/native/libjava/jdk_util_md.h

Print this page
rev 59383 : [mq]: final

@@ -1,7 +1,7 @@
 /*
- * Copyright (c) 2011, 2013, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2011, 2020, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
  * under the terms of the GNU General Public License version 2 only, as
  * published by the Free Software Foundation.  Oracle designates this

@@ -25,15 +25,11 @@
 
 #ifndef JDK_UTIL_MD_H
 #define JDK_UTIL_MD_H
 
 // checking for nanness
-#ifdef __solaris__
-#include <ieeefp.h>
-#define ISNANF(f) isnanf(f)
-#define ISNAND(d) isnand(d)
-#elif defined(MACOSX)
+#if defined(MACOSX)
 #include <math.h>
 #define ISNANF(f) isnan(f)
 #define ISNAND(d) isnan(d)
 #elif defined(__linux__) || defined(_ALLBSD_SOURCE)
 #include <math.h>
< prev index next >