aboutsummaryrefslogtreecommitdiff
path: root/libc/src/string/strcpy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/string/strcpy.cpp')
-rw-r--r--libc/src/string/strcpy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/string/strcpy.cpp b/libc/src/string/strcpy.cpp
index cac4f6e..4fbd1a3 100644
--- a/libc/src/string/strcpy.cpp
+++ b/libc/src/string/strcpy.cpp
@@ -12,7 +12,7 @@
#include "src/__support/common.h"
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
LLVM_LIBC_FUNCTION(char *, strcpy,
(char *__restrict dest, const char *__restrict src)) {
@@ -21,4 +21,4 @@ LLVM_LIBC_FUNCTION(char *, strcpy,
return dest;
}
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE