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