aboutsummaryrefslogtreecommitdiff
path: root/libc/src/math/generic/rintf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/rintf.cpp')
-rw-r--r--libc/src/math/generic/rintf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/math/generic/rintf.cpp b/libc/src/math/generic/rintf.cpp
index 8c2e9c9..259a46f 100644
--- a/libc/src/math/generic/rintf.cpp
+++ b/libc/src/math/generic/rintf.cpp
@@ -10,10 +10,10 @@
#include "src/__support/FPUtil/NearestIntegerOperations.h"
#include "src/__support/common.h"
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(float, rintf, (float x)) {
return fputil::round_using_current_rounding_mode(x);
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE