aboutsummaryrefslogtreecommitdiff
path: root/libc/src/string/rindex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/string/rindex.cpp')
-rw-r--r--libc/src/string/rindex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/string/rindex.cpp b/libc/src/string/rindex.cpp
index 520a4db..2c7f8dc 100644
--- a/libc/src/string/rindex.cpp
+++ b/libc/src/string/rindex.cpp
@@ -11,10 +11,10 @@
#include "src/__support/common.h"
#include "src/string/string_utils.h"
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(char *, rindex, (const char *src, int c)) {
return internal::strrchr_implementation(src, c);
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE