git: 9front

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

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

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