| 15 | namespace LIBC_NAMESPACE_DECL { |
| 16 | |
| 17 | LLVM_LIBC_FUNCTION(int, strcmp, (const char *left, const char *right)) { |
| 18 | auto comp = [](char l, char r) -> int { return l - r; }; |
| 19 | return inline_strcmp(left, right, comp); |
| 20 | } |
| 21 | |
| 22 | } // namespace LIBC_NAMESPACE_DECL |
nothing calls this directly
no test coverage detected