support alternate glibc name pow10 for exp10
authorRich Felker <dalias@aerifal.cx>
Tue, 1 May 2012 04:07:37 +0000 (00:07 -0400)
committerRich Felker <dalias@aerifal.cx>
Tue, 1 May 2012 04:07:37 +0000 (00:07 -0400)
include/math.h
src/math/exp10.c
src/math/exp10f.c
src/math/exp10l.c

index 65b1e9151177a5992ae47ae549fe26d4af20df74..d4359f329cb2b287e0d3267799e9f90ba6488819 100644 (file)
@@ -391,6 +391,9 @@ long double ynl(int, long double);
 double      exp10(double);
 float       exp10f(float);
 long double exp10l(long double);
+double      pow10(double);
+float       pow10f(float);
+long double pow10l(long double);
 #endif
 
 #ifdef __cplusplus
index 7fd86fba957b321d115d41b767d66d7fb7cd1c11..16d704a71095ee72c300038ad37ea6e28257e457 100644 (file)
@@ -1,5 +1,6 @@
 #define _GNU_SOURCE
 #include <math.h>
+#include "libc.h"
 
 double exp10(double x)
 {
@@ -17,3 +18,5 @@ double exp10(double x)
        }
        return pow(10.0, x);
 }
+
+weak_alias(exp10, pow10);
index c9521411ec5da7629596b7542ac31bfeda169572..b697eb9ccc59bfaba99a01e1690e441d6ed9309e 100644 (file)
@@ -1,5 +1,6 @@
 #define _GNU_SOURCE
 #include <math.h>
+#include "libc.h"
 
 float exp10f(float x)
 {
@@ -15,3 +16,5 @@ float exp10f(float x)
        }
        return exp2(3.32192809488736234787031942948939 * x);
 }
+
+weak_alias(exp10f, pow10f);
index 4d0c5a01195a1e2f7ff9b77b163f1c1f7feaa3b0..4b2b7ef61a4cf5f47d84ea3d4a3c206eef0d14ff 100644 (file)
@@ -1,5 +1,6 @@
 #define _GNU_SOURCE
 #include <math.h>
+#include "libc.h"
 
 long double exp10l(long double x)
 {
@@ -17,3 +18,5 @@ long double exp10l(long double x)
        }
        return powl(10.0, x);
 }
+
+weak_alias(exp10l, pow10l);