timer_gettime: add time64 syscall support, decouple 32-bit time_t
[musl] / src / string / strrchr.c
1 #include <string.h>
2
3 char *strrchr(const char *s, int c)
4 {
5         return __memrchr(s, c, strlen(s) + 1);
6 }