| 96 | } |
| 97 | |
| 98 | inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD const void* memchr(const void* __s, int __c, size_t __n) { |
| 99 | return __builtin_memchr(__s, __c, __n); |
| 100 | } |
| 101 | inline _LIBCPP_HIDE_FROM_ABI _LIBCPP_PREFERRED_OVERLOAD void* memchr(void* __s, int __c, size_t __n) { |
| 102 | return __builtin_memchr(__s, __c, __n); |
| 103 | } |