git: 9front

ref: 4b4b226ee348c8f1268d6054a8f9662cd45cc042
dir: /sys/src/libc/port/atof.c/

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

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