msvcrt: Don't forward strncat to ntdll.

This commit is contained in:
Piotr Caban 2013-09-17 14:45:44 +02:00 committed by Alexandre Julliard
parent f0ec9b134a
commit 31d92b926e
2 changed files with 9 additions and 1 deletions

View File

@ -1428,7 +1428,7 @@
@ cdecl strerror_s(ptr long long)
@ cdecl strftime(str long str ptr) MSVCRT_strftime
@ cdecl strlen(str) MSVCRT_strlen
@ cdecl strncat(str str long) ntdll.strncat
@ cdecl strncat(str str long) MSVCRT_strncat
@ cdecl strncat_s(str long str long) MSVCRT_strncat_s
@ cdecl strncmp(str str long) MSVCRT_strncmp
@ cdecl strncpy(ptr str long) MSVCRT_strncpy

View File

@ -676,6 +676,14 @@ int CDECL MSVCRT_strncat_s( char* dst, MSVCRT_size_t elem, const char* src, MSVC
return MSVCRT_ERANGE;
}
/*********************************************************************
* strncat (MSVCRT.@)
*/
char* __cdecl MSVCRT_strncat(char *dst, const char *src, MSVCRT_size_t len)
{
return strncat(dst, src, len);
}
/*********************************************************************
* strxfrm (MSVCRT.@)
*/