git: 9front

ref: 8e849fe1e282a99e409b2956a9b8bc5599b8ac4f
dir: /sys/src/libc/port/atof.c/

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

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