git: 9front

ref: 6504d5040a0a7414be760801c349c7d0bc665cc9
dir: /sys/src/libc/port/atof.c/

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

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