aboutsummaryrefslogtreecommitdiff
path: root/libc/src/string/strlcat.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/string/strlcat.cpp')
-rw-r--r--libc/src/string/strlcat.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/string/strlcat.cpp b/libc/src/string/strlcat.cpp
index a718de7..2943f4f 100644
--- a/libc/src/string/strlcat.cpp
+++ b/libc/src/string/strlcat.cpp
@@ -11,7 +11,7 @@
#include "src/__support/common.h"
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(size_t, strlcat,
(char *__restrict dst, const char *__restrict src,
@@ -24,4 +24,4 @@ LLVM_LIBC_FUNCTION(size_t, strlcat,
return first_len + internal::strlcpy(new_dst, src, size - first_len);
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE