git: 9front

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

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

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