Remove duplicate wtol

svn path=/trunk/; revision=52155
This commit is contained in:
Timo Kreuzer 2011-06-09 12:08:16 +00:00
parent cad02800db
commit 7b19156c50

View file

@ -9,14 +9,9 @@ long atol(const char *str)
return (long)_atoi64(str);
}
long _wtol(const wchar_t *str)
{
return (long)_wtoi64(str);
}
int _atoldbl(_LDOUBLE *value, char *str)
{
/* FIXME needs error checking for huge/small values */
//*value = strtold(str,0);
return -1;
}
}