[ros-diffs] [tkreuzer] 52155: [CRT] Remove duplicate wtol

tkreuzer at svn.reactos.org tkreuzer at svn.reactos.org
Thu Jun 9 12:08:16 UTC 2011


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?rev=52155&r1=52154&r2=52155&view=diff
==============================================================================
--- 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;
-}
+}




More information about the Ros-diffs mailing list