support alternate glibc name pow10 for exp10
[musl] / src / math / exp10l.c
index 4d0c5a0..4b2b7ef 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);