1 #include <stdlib.h> 2 3 double atof(const char * s)4 atof(const char *s) 5 { 6 return(strtod(s, (char **)0)); 7 } 8