diff options
Diffstat (limited to 'src/math/exp10.c')
-rw-r--r-- | src/math/exp10.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/math/exp10.c b/src/math/exp10.c index 7fd86fba..16d704a7 100644 --- a/src/math/exp10.c +++ b/src/math/exp10.c @@ -1,5 +1,6 @@ #define _GNU_SOURCE #include <math.h> +#include "libc.h" double exp10(double x) { @@ -17,3 +18,5 @@ double exp10(double x) } return pow(10.0, x); } + +weak_alias(exp10, pow10); |