OSDN Git Service

replace heap sort with smoothsort implementation by Valentin Ochs
[android-x86/external-musl-libc.git] / src / stdlib / atof.c
1 #include <stdlib.h>
2
3 double atof(const char *s)
4 {
5         return strtod(s, 0);
6 }