git: 9front

ref: 363a4a08edc8722e60d95acf5f0a217a3bdfafbb
dir: /sys/src/libc/port/atof.c/

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

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