summaryrefslogtreecommitdiff
path: root/libc/src/math/generic/ldexpf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/ldexpf.cpp')
-rw-r--r--libc/src/math/generic/ldexpf.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/libc/src/math/generic/ldexpf.cpp b/libc/src/math/generic/ldexpf.cpp
index 63c5d219f7a7..c5f30bb725e6 100644
--- a/libc/src/math/generic/ldexpf.cpp
+++ b/libc/src/math/generic/ldexpf.cpp
@@ -7,14 +7,12 @@
//===----------------------------------------------------------------------===//
#include "src/math/ldexpf.h"
-#include "src/__support/FPUtil/ManipulationFunctions.h"
-#include "src/__support/common.h"
-#include "src/__support/macros/config.h"
+#include "src/__support/math/ldexpf.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, ldexpf, (float x, int exp)) {
- return fputil::ldexp(x, exp);
+ return math::ldexpf(x, exp);
}
} // namespace LIBC_NAMESPACE_DECL