summaryrefslogtreecommitdiff
path: root/src/math/ldexpl.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/ldexpl.c')
-rw-r--r--src/math/ldexpl.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/math/ldexpl.c b/src/math/ldexpl.c
new file mode 100644
index 00000000..885ff6e9
--- /dev/null
+++ b/src/math/ldexpl.c
@@ -0,0 +1,6 @@
+#include "libm.h"
+
+long double ldexpl(long double x, int n)
+{
+ return scalbnl(x, n);
+}