fix buffer overrun in getgrent code when there are no group members
[musl] / src / stdlib / strtod.c
1 #include <stdlib.h>
2
3 double strtod(const char *s, char **p)
4 {
5         return strtold(s, p);
6 }