jdk/src/java.base/share/classes/java/lang/StrictMath.java
changeset 42751 38d28e784f44
parent 40530 53bc022a137b
child 44851 3439a92526a0
--- a/jdk/src/java.base/share/classes/java/lang/StrictMath.java	Fri Dec 16 11:58:17 2016 -0800
+++ b/jdk/src/java.base/share/classes/java/lang/StrictMath.java	Fri Dec 16 21:43:29 2016 -0800
@@ -227,7 +227,9 @@
      * @return  the value <i>e</i><sup>{@code a}</sup>,
      *          where <i>e</i> is the base of the natural logarithms.
      */
-    public static native double exp(double a);
+    public static double exp(double a) {
+        return FdLibm.Exp.compute(a);
+    }
 
     /**
      * Returns the natural logarithm (base <i>e</i>) of a {@code double}