first try at writing an efficient and "correct" exp10
[musl] / include / math.h
index ff62cb7..65b1e91 100644 (file)
@@ -25,7 +25,7 @@ extern "C" {
 #define HUGE_VALL ((long double)INFINITY)
 
 #define MATH_ERRNO  1
-#define MATH_EXCEPT 2
+#define MATH_ERREXCEPT 2
 #define math_errhandling 2
 
 #define FP_ILOGBNAN (((unsigned)-1)>>1)
@@ -387,6 +387,10 @@ float       y1f(float);
 long double y1l(long double);
 float       ynf(int, float);
 long double ynl(int, long double);
+
+double      exp10(double);
+float       exp10f(float);
+long double exp10l(long double);
 #endif
 
 #ifdef __cplusplus