move msghdr and cmsghdr out of bits/socket.h
[musl.git] / src / stdlib / atof.c
blobf7fcd8266eb4287bcd1d4bb2139def4e52f65301
1 #include <stdlib.h>
3 double atof(const char *s)
5 return strtod(s, 0);