X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=src%2Fmath%2Fexp10f.c;h=b697eb9ccc59bfaba99a01e1690e441d6ed9309e;hb=04ccbdca6d88738e23e0d6a622ad33854c468646;hp=c9521411ec5da7629596b7542ac31bfeda169572;hpb=f6819755779a084bf2f82cb90175a4d9a018de73;p=musl diff --git a/src/math/exp10f.c b/src/math/exp10f.c index c9521411..b697eb9c 100644 --- a/src/math/exp10f.c +++ b/src/math/exp10f.c @@ -1,5 +1,6 @@ #define _GNU_SOURCE #include +#include "libc.h" float exp10f(float x) { @@ -15,3 +16,5 @@ float exp10f(float x) } return exp2(3.32192809488736234787031942948939 * x); } + +weak_alias(exp10f, pow10f);