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