V10/libc/gen/atof.c

#include	<stdlib.h>

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