summaryrefslogtreecommitdiff
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.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/string/strcpy.cpp b/libc/src/string/strcpy.cpp
index 4fbd1a38f687..60b73ab3aa82 100644
--- a/libc/src/string/strcpy.cpp
+++ b/libc/src/string/strcpy.cpp
@@ -7,12 +7,13 @@
//===----------------------------------------------------------------------===//
#include "src/string/strcpy.h"
+#include "src/__support/macros/config.h"
#include "src/string/memory_utils/inline_memcpy.h"
#include "src/string/string_utils.h"
#include "src/__support/common.h"
-namespace LIBC_NAMESPACE {
+namespace LIBC_NAMESPACE_DECL {
LLVM_LIBC_FUNCTION(char *, strcpy,
(char *__restrict dest, const char *__restrict src)) {
@@ -21,4 +22,4 @@ LLVM_LIBC_FUNCTION(char *, strcpy,
return dest;
}
-} // namespace LIBC_NAMESPACE
+} // namespace LIBC_NAMESPACE_DECL