git: 9front

ref: 5c5ffea92c87de9ccdde90dbca6fc345137ef9a6
dir: /sys/src/libc/port/atof.c/

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

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