shithub: plan9front

ref: 55af35eeeb3026ee9aba3658b7ba12d6ea3a5015
dir: /sys/src/libc/port/atof.c/

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

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