aboutsummaryrefslogtreecommitdiff
path: root/libc/src/math/generic/lroundf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/math/generic/lroundf.cpp')
-rw-r--r--libc/src/math/generic/lroundf.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/math/generic/lroundf.cpp b/libc/src/math/generic/lroundf.cpp
index 919ae35..40c1323 100644
--- a/libc/src/math/generic/lroundf.cpp
+++ b/libc/src/math/generic/lroundf.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(long, lroundf, (float x)) {
return fputil::round_to_signed_integer<float, long>(x);
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE