aboutsummaryrefslogtreecommitdiff
path: root/libc/src/math/generic/llrintf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/llrintf.cpp')
-rw-r--r--libc/src/math/generic/llrintf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/math/generic/llrintf.cpp b/libc/src/math/generic/llrintf.cpp
index a4ae572..836e7cb 100644
--- a/libc/src/math/generic/llrintf.cpp
+++ b/libc/src/math/generic/llrintf.cpp
@@ -10,7 +10,7 @@
#include "src/__support/FPUtil/NearestIntegerOperations.h"
#include "src/__support/common.h"
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(long long, llrintf, (float x)) {
return fputil::round_to_signed_integer_using_current_rounding_mode<float,
@@ -18,4 +18,4 @@ LLVM_LIBC_FUNCTION(long long, llrintf, (float x)) {
x);
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE