diff options
Diffstat (limited to 'libc/src/string/strncasecmp.cpp')
| -rw-r--r-- | libc/src/string/strncasecmp.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/string/strncasecmp.cpp b/libc/src/string/strncasecmp.cpp index 994fb258746a..45f82c98069b 100644 --- a/libc/src/string/strncasecmp.cpp +++ b/libc/src/string/strncasecmp.cpp @@ -10,9 +10,10 @@ #include "src/__support/common.h" #include "src/__support/ctype_utils.h" +#include "src/__support/macros/config.h" #include "src/string/memory_utils/inline_strcmp.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(int, strncasecmp, (const char *left, const char *right, size_t n)) { @@ -23,4 +24,4 @@ LLVM_LIBC_FUNCTION(int, strncasecmp, return inline_strncmp(left, right, n, case_cmp); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
