summaryrefslogtreecommitdiff
path: root/src/math/s_ldexpf.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/math/s_ldexpf.c')
-rw-r--r--src/math/s_ldexpf.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/math/s_ldexpf.c b/src/math/s_ldexpf.c
deleted file mode 100644
index 3bad5f39..00000000
--- a/src/math/s_ldexpf.c
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <math.h>
-
-float ldexpf(float x, int n)
-{
- return scalbnf(x, n);
-}