Commit 26c9879a authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

msvcrt: Change return type of wcsncat_s to errno_t.

parent d24cbd11
......@@ -2508,7 +2508,7 @@ wchar_t* __cdecl wcscat( wchar_t *dst, const wchar_t *src )
/*********************************************************************
* wcsncat_s (MSVCRT.@)
*/
INT CDECL wcsncat_s(wchar_t *dst, size_t elem, const wchar_t *src, size_t count)
errno_t CDECL wcsncat_s(wchar_t *dst, size_t elem, const wchar_t *src, size_t count)
{
size_t i, j;
......
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