update for HEAD-2003021201
[reactos.git] / lib / crtdll / wchar / wtoi.c
index 6aeb3d1..721f979 100644 (file)
@@ -1,11 +1,12 @@
-#include <crtdll/wchar.h>
+#include <msvcrt/wchar.h>
 
-int _wtoi( const wchar_t *str )
+
+int _wtoi(const wchar_t* str)
 {
        return (int)wcstol(str, 0, 10);
 }
   
-long _wtol( const wchar_t *str )
+long _wtol(const wchar_t* str)
 {
        return (int)wcstol(str, 0, 10);
 }