aboutsummaryrefslogtreecommitdiff
path: root/system/lib/libc/musl/src/math/ldexpf.c
diff options
context:
space:
mode:
Diffstat (limited to 'system/lib/libc/musl/src/math/ldexpf.c')
-rw-r--r--system/lib/libc/musl/src/math/ldexpf.c6
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);
+}