| 16 | namespace LIBC_NAMESPACE_DECL { |
| 17 | |
| 18 | LLVM_LIBC_FUNCTION(int, memcmp, |
| 19 | (const void *lhs, const void *rhs, size_t count)) { |
| 20 | if (count) { |
| 21 | LIBC_CRASH_ON_NULLPTR(lhs); |
| 22 | LIBC_CRASH_ON_NULLPTR(rhs); |
| 23 | } |
| 24 | return inline_memcmp(lhs, rhs, count); |
| 25 | } |
| 26 | |
| 27 | } // namespace LIBC_NAMESPACE_DECL |
nothing calls this directly
no test coverage detected