math: use 0x1p-120f and 0x1p120f for tiny and huge values
[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 }