Skip to content

Commit 386642c

Browse files
committed
[MSVCRT] Comment out memmove
1 parent f73c6da commit 386642c

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

dll/win32/msvcrt/string.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2786,6 +2786,7 @@ int __cdecl memcmp(const void *ptr1, const void *ptr2, size_t n)
27862786
return memcmp_blocks(p1, p2, n);
27872787
}
27882788

2789+
#ifndef __REACTOS__
27892790
#if defined(__i386__) || (defined(__x86_64__) && !defined(__arm64ec__))
27902791

27912792
#ifdef __i386__
@@ -3154,6 +3155,7 @@ void * __cdecl memmove(void *dst, const void *src, size_t n)
31543155
#endif
31553156
}
31563157
#undef MERGE
3158+
#endif /* !__REACTOS__ */
31573159

31583160
/*********************************************************************
31593161
* memcpy (MSVCRT.@)

0 commit comments

Comments
 (0)