Commit c8e71e9a authored by Austin English's avatar Austin English Committed by Alexandre Julliard

msvcrt: Implement memcpy in msvcrt instead of forwarding to ntdll.

parent a79de8aa
......@@ -1338,7 +1338,7 @@
@ cdecl mbtowc(ptr str long) MSVCRT_mbtowc
@ cdecl memchr(ptr long long) ntdll.memchr
@ cdecl memcmp(ptr ptr long) ntdll.memcmp
@ cdecl memcpy(ptr ptr long) ntdll.memcpy
@ cdecl memcpy(ptr ptr long) MSVCRT_memcpy
@ cdecl memcpy_s(ptr long ptr long)
@ cdecl memmove(ptr ptr long) ntdll.memmove
@ cdecl memmove_s(ptr long ptr long)
......
......@@ -1605,3 +1605,11 @@ int CDECL MSVCRT_I10_OUTPUT(MSVCRT__LDOUBLE ld80, int prec, int flag, struct _I1
return 1;
}
#undef I10_OUTPUT_MAX_PREC
/*********************************************************************
* memcpy (NTDLL.@)
*/
void * __cdecl MSVCRT_memcpy( void *dst, const void *src, size_t n )
{
return memmove( dst, src, n );
}
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