Merge pull request #726 from xxuejie/incoming

Add strtof function(use strtod instead)
This commit is contained in:
Alon Zakai 2012-11-22 11:35:04 -08:00
Родитель e7491225c9 b289a8fb0f
Коммит a0e7cf1c16
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -3738,6 +3738,7 @@ LibraryManager.library = {
strtod_l: 'strtod', // no locale support yet
strtold: 'strtod', // XXX add real support for long double
strtold_l: 'strtold', // no locale support yet
strtof: 'strtod', // use stdtod to handle strtof
_parseInt__deps: ['isspace', '__setErrNo', '$ERRNO_CODES'],
_parseInt: function(str, endptr, base, min, max, bits, unsign) {