summaryrefslogtreecommitdiffstats
path: root/mdk-stage1/dietlibc/lib/atof.c
blob: 54221390e0bf2b83945274f833486744196c47ef (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdlib.h>

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