summaryrefslogtreecommitdiff
path: root/libc/src/math/generic/frexpf16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/frexpf16.cpp')
-rw-r--r--libc/src/math/generic/frexpf16.cpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/libc/src/math/generic/frexpf16.cpp b/libc/src/math/generic/frexpf16.cpp
index 4571b0d0ea38..fa918fd7ffc3 100644
--- a/libc/src/math/generic/frexpf16.cpp
+++ b/libc/src/math/generic/frexpf16.cpp
@@ -7,14 +7,13 @@
//===----------------------------------------------------------------------===//
#include "src/math/frexpf16.h"
-#include "src/__support/FPUtil/ManipulationFunctions.h"
-#include "src/__support/common.h"
-#include "src/__support/macros/config.h"
+
+#include "src/__support/math/frexpf16.h"
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float16, frexpf16, (float16 x, int *exp)) {
- return fputil::frexp(x, *exp);
+ return math::frexpf16(x, exp);
}
} // namespace LIBC_NAMESPACE_DECL