msvcrt: Don't forward strrchr to ntdll.

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

View File

@ -1435,7 +1435,7 @@
@ cdecl strncpy_s(ptr long str long)
@ cdecl strnlen(str long) MSVCRT_strnlen
@ cdecl strpbrk(str str) ntdll.strpbrk
@ cdecl strrchr(str long) ntdll.strrchr
@ cdecl strrchr(str long) MSVCRT_strrchr
@ cdecl strspn(str str) ntdll.strspn
@ cdecl strstr(str str) ntdll.strstr
@ cdecl strtod(str ptr) MSVCRT_strtod

View File

@ -1649,6 +1649,14 @@ char* __cdecl MSVCRT_strchr(const char *str, int c)
return strchr(str, c);
}
/*********************************************************************
* strrchr (MSVCRT.@)
*/
char* __cdecl MSVCRT_strrchr(const char *str, int c)
{
return strrchr(str, c);
}
/*********************************************************************
* memchr (MSVCRT.@)
*/