fix broken struct shmid_ds on powerpc (32-bit)
[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 }