msvcrt: Don't forward memset to ntdll.

This commit is contained in:
Piotr Caban 2013-03-27 16:11:59 +01:00 committed by Alexandre Julliard
parent 15b40e7b9c
commit 1278080901
2 changed files with 9 additions and 1 deletions

View File

@ -1368,7 +1368,7 @@
@ cdecl memcpy_s(ptr long ptr long) @ cdecl memcpy_s(ptr long ptr long)
@ cdecl memmove(ptr ptr long) ntdll.memmove @ cdecl memmove(ptr ptr long) ntdll.memmove
@ cdecl memmove_s(ptr long ptr long) @ cdecl memmove_s(ptr long ptr long)
@ cdecl memset(ptr long long) ntdll.memset @ cdecl memset(ptr long long) MSVCRT_memset
@ cdecl mktime(ptr) MSVCRT_mktime @ cdecl mktime(ptr) MSVCRT_mktime
@ cdecl modf(double ptr) MSVCRT_modf @ cdecl modf(double ptr) MSVCRT_modf
@ cdecl -arch=arm,x86_64 modff(float ptr) MSVCRT_modff @ cdecl -arch=arm,x86_64 modff(float ptr) MSVCRT_modff

View File

@ -1566,6 +1566,14 @@ void * __cdecl MSVCRT_memcpy( void *dst, const void *src, size_t n )
return memmove( dst, src, n ); return memmove( dst, src, n );
} }
/*********************************************************************
* memset (MSVCRT.@)
*/
void* __cdecl MSVCRT_memset(void *dst, int c, MSVCRT_size_t n)
{
return memset(dst, c, n);
}
/********************************************************************* /*********************************************************************
* _strnicmp_l (MSVCRT.@) * _strnicmp_l (MSVCRT.@)
*/ */