diff options
Diffstat (limited to 'libc/src/math/generic/exp2f.cpp')
-rw-r--r-- | libc/src/math/generic/exp2f.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/math/generic/exp2f.cpp b/libc/src/math/generic/exp2f.cpp index 60d6510..3117f73 100644 --- a/libc/src/math/generic/exp2f.cpp +++ b/libc/src/math/generic/exp2f.cpp @@ -9,10 +9,10 @@ #include "src/math/exp2f.h" #include "src/__support/common.h" // for LLVM_LIBC_FUNCTION #include "src/__support/macros/config.h" -#include "src/math/generic/exp2f_impl.h" +#include "src/__support/math/exp2f.h" namespace LIBC_NAMESPACE_DECL { -LLVM_LIBC_FUNCTION(float, exp2f, (float x)) { return generic::exp2f(x); } +LLVM_LIBC_FUNCTION(float, exp2f, (float x)) { return math::exp2f(x); } } // namespace LIBC_NAMESPACE_DECL |