summaryrefslogtreecommitdiff
path: root/libm/math_private.h
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2016-01-30 10:36:17 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2016-01-30 16:06:59 +0100
commit12a85731dc5fda3bc01ab19c82678b3bf122d794 (patch)
tree36f8efa23c1847a07301e9a67f16e7050ba370cd /libm/math_private.h
parente6acefa2ddd445e7e13aa89ced6d184a08ad8da6 (diff)
add exp10() from glibc
Some software make use of exp10, so add it. Basic testing with LTP. Signed-off-by: Waldemar Brodkorb <wbx@uclibc-ng.org>
Diffstat (limited to 'libm/math_private.h')
-rw-r--r--libm/math_private.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libm/math_private.h b/libm/math_private.h
index be8031ef8..b62dcfe1a 100644
--- a/libm/math_private.h
+++ b/libm/math_private.h
@@ -158,6 +158,7 @@ extern double __ieee754_atanh (double) attribute_hidden;
extern double __ieee754_asin (double) attribute_hidden;
extern double __ieee754_atan2 (double,double) attribute_hidden;
extern double __ieee754_exp (double) attribute_hidden;
+extern double __ieee754_exp10 (double) attribute_hidden;
extern double __ieee754_cosh (double) attribute_hidden;
extern double __ieee754_fmod (double,double) attribute_hidden;
extern double __ieee754_pow (double,double) attribute_hidden;