Author: tkreuzer Date: Thu Jun 9 12:08:16 2011 New Revision: 52155
URL: http://svn.reactos.org/svn/reactos?rev=52155&view=rev Log: [CRT] Remove duplicate wtol
Modified: trunk/reactos/lib/sdk/crt/string/atol.c
Modified: trunk/reactos/lib/sdk/crt/string/atol.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/string/atol.c?r... ============================================================================== --- trunk/reactos/lib/sdk/crt/string/atol.c [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/crt/string/atol.c [iso-8859-1] Thu Jun 9 12:08:16 2011 @@ -9,14 +9,9 @@ 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; -} +}