| 14 | namespace LIBC_NAMESPACE_DECL { |
| 15 | |
| 16 | LLVM_LIBC_FUNCTION(void, bzero, (void *ptr, size_t count)) { |
| 17 | inline_bzero(reinterpret_cast<char *>(ptr), count); |
| 18 | } |
| 19 | |
| 20 | } // namespace LIBC_NAMESPACE_DECL |
nothing calls this directly
no test coverage detected