branch update for HEAD-2003091401
[reactos.git] / lib / crtdll / string / memmove.s
diff --git a/lib/crtdll/string/memmove.s b/lib/crtdll/string/memmove.s
deleted file mode 100644 (file)
index a667bbc..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
-       .file "memmove.s"
-       .globl  _memmove
-_memmove:
-       pushl   %ebp
-       movl    %esp,%ebp
-       pushl   %esi
-       pushl   %edi
-       movl    8(%ebp),%edi
-       movl    12(%ebp),%esi
-       movl    16(%ebp),%ecx
-       jecxz   L2
-       cld
-       cmpl    %esi,%edi
-       jb      L3
-
-       std
-       addl    %ecx,%esi
-       addl    %ecx,%edi
-       decl    %esi
-       decl    %edi
-L3:
-       rep
-       movsb
-
-L2:
-       cld
-       popl    %edi
-       popl    %esi
-       movl    8(%ebp),%eax
-       leave
-       ret
-