git: 9front

ref: 64ac95ab9322cd7472f48c0e3d60733308f88ab0
dir: /sys/src/libc/port/atof.c/

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

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