git: 9front

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

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

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