git: 9front

ref: 1e07b361502864a9c7cd53b25f29b8580d9444f8
dir: /sys/src/libc/port/atof.c/

View raw version
#include <u.h>
#include <libc.h>

double
atof(char *cp)
{
	return strtod(cp, 0);
}