aboutsummaryrefslogtreecommitdiff
path: root/libc/src/math/generic/exp2f.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/exp2f.cpp')
-rw-r--r--libc/src/math/generic/exp2f.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/math/generic/exp2f.cpp b/libc/src/math/generic/exp2f.cpp
index 2a5776a..fc91dfd 100644
--- a/libc/src/math/generic/exp2f.cpp
+++ b/libc/src/math/generic/exp2f.cpp
@@ -22,7 +22,7 @@
#include "explogxf.h"
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
constexpr uint32_t EXVAL1 = 0x3b42'9d37U;
constexpr uint32_t EXVAL2 = 0xbcf3'a937U;
@@ -158,4 +158,4 @@ LLVM_LIBC_FUNCTION(float, exp2f, (float x)) {
return static_cast<float>(fputil::multiply_add(p, dx_sq * mh, c1 * mh));
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE