| 472 | |
| 473 | |
| 474 | double my_atof(const char *nptr) |
| 475 | { |
| 476 | int error; |
| 477 | const char *end= nptr+65535; /* Should be enough */ |
| 478 | return (my_strtod(nptr, (char**) &end, &error)); |
| 479 | } |
| 480 | |
| 481 | |
| 482 | /**************************************************************** |