Commit 6ac11083 authored by Patrik Stridvall's avatar Patrik Stridvall Committed by Alexandre Julliard

Removed implementation of _ultow since it is forwarded to NTDLL in the

.spec file.
parent cd6b8cad
......@@ -373,14 +373,3 @@ WCHAR* _ltow(long value,WCHAR* out,int base)
return out;
}
/*********************************************************************
* _ultow (MSVCRT.@)
*/
WCHAR* _ultow(unsigned long value,WCHAR* out,int base)
{
char buf[128];
_ultoa(value, buf, base);
MultiByteToWideChar (CP_ACP, MB_PRECOMPOSED, buf, -1, out, 128);
return out;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment