git: 9front

ref: b6fa1fce8c018aae771f83c2bcbe43bf3f88c43f
dir: /sys/src/ape/lib/ap/gen/atof.c/

View raw version
#include	<stdlib.h>

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