summaryrefslogtreecommitdiffstats
path: root/private/crt32/string/i386/memmove.asm
diff options
context:
space:
mode:
Diffstat (limited to 'private/crt32/string/i386/memmove.asm')
-rw-r--r--private/crt32/string/i386/memmove.asm19
1 files changed, 19 insertions, 0 deletions
diff --git a/private/crt32/string/i386/memmove.asm b/private/crt32/string/i386/memmove.asm
new file mode 100644
index 000000000..39863a1db
--- /dev/null
+++ b/private/crt32/string/i386/memmove.asm
@@ -0,0 +1,19 @@
+;***
+;memmove.asm -
+;
+; Copyright (c) 1991-1992, Microsoft Corporation. All rights reserved.
+;
+;Purpose:
+; memmove() copies a source memory buffer to a destination buffer.
+; Overlapping buffers are treated specially, to avoid propogation.
+;
+; NOTE: This stub module scheme is compatible with NT build
+; procedure.
+;
+;Revision History:
+; 09-25-91 JCR Stub module created.
+;
+;*******************************************************************************
+
+MEM_MOVE EQU 1
+INCLUDE I386\MEMCPY.ASM