git: 9front

ref: 873a998c33f3637fb31092dcbd3bbbeaf889cedd
dir: /sys/src/libc/port/atof.c/

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

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