diff options
Diffstat (limited to 'src/math/exp10f.c')
-rw-r--r-- | src/math/exp10f.c | 3 |
1 files changed, 3 insertions, 0 deletions
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 <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); |