math: move x86_64 exp2l implementation to exp2l.s from expl.s
[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 }