diff options
author | Bruce Mitchener <bruce.mitchener@gmail.com> | 2013-09-20 21:59:52 +0700 |
---|---|---|
committer | Bruce Mitchener <bruce.mitchener@gmail.com> | 2014-01-14 02:21:11 +0700 |
commit | 3b62c6587c50400cf0899c60ee29fa2282efdd28 (patch) | |
tree | 8a9cd6b67bd66988969b5e545f878e1a25354630 /system/lib/libc/musl/src/math/ldexpf.c | |
parent | 75a6be63a37d68295c0e6da9f9e77d17c8cc7e91 (diff) |
Add lots of math functions.
Diffstat (limited to 'system/lib/libc/musl/src/math/ldexpf.c')
-rw-r--r-- | system/lib/libc/musl/src/math/ldexpf.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/system/lib/libc/musl/src/math/ldexpf.c b/system/lib/libc/musl/src/math/ldexpf.c new file mode 100644 index 00000000..3bad5f39 --- /dev/null +++ b/system/lib/libc/musl/src/math/ldexpf.c @@ -0,0 +1,6 @@ +#include <math.h> + +float ldexpf(float x, int n) +{ + return scalbnf(x, n); +} |