aboutsummaryrefslogtreecommitdiff
path: root/libc/src/math/generic/tanhf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/tanhf.cpp')
-rw-r--r--libc/src/math/generic/tanhf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/math/generic/tanhf.cpp b/libc/src/math/generic/tanhf.cpp
index 1620e37..7d9f86c 100644
--- a/libc/src/math/generic/tanhf.cpp
+++ b/libc/src/math/generic/tanhf.cpp
@@ -15,7 +15,7 @@
#include "src/__support/macros/properties/cpu_features.h"
#include "src/math/generic/explogxf.h"
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
// 2^6 * log2(e)
constexpr double LOG2_E_EXP2_6 = ExpBase::LOG2_B * 2.0;
@@ -118,4 +118,4 @@ LLVM_LIBC_FUNCTION(float, tanhf, (float x)) {
return static_cast<float>((r - mh) / (r + mh));
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE