diff options
Diffstat (limited to 'libc/src/math/generic/frexpf.cpp')
| -rw-r--r-- | libc/src/math/generic/frexpf.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/libc/src/math/generic/frexpf.cpp b/libc/src/math/generic/frexpf.cpp index 09227badc341..783880d44ce6 100644 --- a/libc/src/math/generic/frexpf.cpp +++ b/libc/src/math/generic/frexpf.cpp @@ -7,14 +7,13 @@ //===----------------------------------------------------------------------===// #include "src/math/frexpf.h" -#include "src/__support/FPUtil/ManipulationFunctions.h" -#include "src/__support/common.h" -#include "src/__support/macros/config.h" + +#include "src/__support/math/frexpf.h" namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(float, frexpf, (float x, int *exp)) { - return fputil::frexp(x, *exp); + return math::frexpf(x, exp); } } // namespace LIBC_NAMESPACE_DECL |
