diff options
Diffstat (limited to 'libc/src/string/bzero.cpp')
| -rw-r--r-- | libc/src/string/bzero.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/src/string/bzero.cpp b/libc/src/string/bzero.cpp index c833cd8c2116..7bcbee3547b9 100644 --- a/libc/src/string/bzero.cpp +++ b/libc/src/string/bzero.cpp @@ -8,12 +8,13 @@ #include "src/string/bzero.h" #include "src/__support/common.h" +#include "src/__support/macros/config.h" #include "src/string/memory_utils/inline_bzero.h" -namespace LIBC_NAMESPACE { +namespace LIBC_NAMESPACE_DECL { LLVM_LIBC_FUNCTION(void, bzero, (void *ptr, size_t count)) { inline_bzero(reinterpret_cast<char *>(ptr), count); } -} // namespace LIBC_NAMESPACE +} // namespace LIBC_NAMESPACE_DECL |
