fix wrong return value from wmemmove on forward copies
[musl] / src / string / rindex.c
1 #include <string.h>
2 #include <strings.h>
3
4 char *rindex(const char *s, int c)
5 {
6         return strrchr(s, c);
7 }