aboutsummaryrefslogtreecommitdiff
path: root/libc/src/math/generic/atanhf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/atanhf.cpp')
-rw-r--r--libc/src/math/generic/atanhf.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/libc/src/math/generic/atanhf.cpp b/libc/src/math/generic/atanhf.cpp
index f6fde76..602a8f0 100644
--- a/libc/src/math/generic/atanhf.cpp
+++ b/libc/src/math/generic/atanhf.cpp
@@ -16,6 +16,7 @@
namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(float, atanhf, (float x)) {
+ using namespace acoshf_internal;
using FPBits = typename fputil::FPBits<float>;
FPBits xbits(x);