git: 9front

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

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

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