aboutsummaryrefslogtreecommitdiff
path: root/libc/src/math/generic/exp10f.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/exp10f.cpp')
-rw-r--r--libc/src/math/generic/exp10f.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/math/generic/exp10f.cpp b/libc/src/math/generic/exp10f.cpp
index b0e93dd..52190fb 100644
--- a/libc/src/math/generic/exp10f.cpp
+++ b/libc/src/math/generic/exp10f.cpp
@@ -20,7 +20,7 @@
#include <errno.h>
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(float, exp10f, (float x)) {
using FPBits = typename fputil::FPBits<float>;
@@ -133,4 +133,4 @@ LLVM_LIBC_FUNCTION(float, exp10f, (float x)) {
return static_cast<float>(multiply_add(p, lo2 * rr.mh, c0 * rr.mh));
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE