git: 9front

ref: 772c867a025e1df9b37b7b9d3abd80b648924909
dir: /sys/src/libc/port/atof.c/

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

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