git: 9front

ref: baeeb6625d82f23b29ea1b588facef185011b5df
dir: /sys/src/libc/port/atof.c/

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

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