first commit of the new libm!
[musl] / src / math / s_ldexpf.c
diff --git a/src/math/s_ldexpf.c b/src/math/s_ldexpf.c
deleted file mode 100644 (file)
index 3bad5f3..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-#include <math.h>
-
-float ldexpf(float x, int n)
-{
-       return scalbnf(x, n);
-}