X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fexp10l.c;h=4b2b7ef61a4cf5f47d84ea3d4a3c206eef0d14ff;hb=cf3fd3d002c728ed0ef5d3aef856ff3e1d418da0;hp=4d0c5a01195a1e2f7ff9b77b163f1c1f7feaa3b0;hpb=f6819755779a084bf2f82cb90175a4d9a018de73;p=musl diff --git a/src/math/exp10l.c b/src/math/exp10l.c index 4d0c5a01..4b2b7ef6 100644 --- a/src/math/exp10l.c +++ b/src/math/exp10l.c @@ -1,5 +1,6 @@ #define _GNU_SOURCE #include +#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);