panthema / 2006 / SDIOS06 / sdios06 / lib / libc / atof.c (Download File)
#include <stdlib.h>

double atof(const char *nptr) {
  double tmp=strtod(nptr,0);
  return tmp;
}