git: 9front

ref: a5740b2f15771d90c01be93f300c5fbcb64eca5f
dir: /sys/src/libc/port/atof.c/

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

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