msvcrt: Don't forward strcmp to ntdll.

This commit is contained in:
Piotr Caban 2013-09-17 14:45:20 +02:00 committed by Alexandre Julliard
parent 5b1f7f8549
commit 1803016c08
2 changed files with 9 additions and 1 deletions

View File

@ -1419,7 +1419,7 @@
@ cdecl strcat(str str) ntdll.strcat
@ cdecl strcat_s(str long str) MSVCRT_strcat_s
@ cdecl strchr(str long) MSVCRT_strchr
@ cdecl strcmp(str str) ntdll.strcmp
@ cdecl strcmp(str str) MSVCRT_strcmp
@ cdecl strcoll(str str) MSVCRT_strcoll
@ cdecl strcpy(ptr str) ntdll.strcpy
@ cdecl strcpy_s(ptr long str) MSVCRT_strcpy_s

View File

@ -1641,6 +1641,14 @@ void* __cdecl MSVCRT_memchr(const void *ptr, int c, MSVCRT_size_t n)
return memchr(ptr, c, n);
}
/*********************************************************************
* strcmp (MSVCRT.@)
*/
int __cdecl MSVCRT_strcmp(const char *str1, const char *str2)
{
return strcmp(str1, str2);
}
/*********************************************************************
* strncmp (MSVCRT.@)
*/