update for HEAD-2003091401
[reactos.git] / lib / msvcrt / string / memcpy.c
diff --git a/lib/msvcrt/string/memcpy.c b/lib/msvcrt/string/memcpy.c
deleted file mode 100644 (file)
index 894bc84..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#include <msvcrt/string.h>
-
-#pragma function(memcpy)
-
-/* This is the most reliable way to avoid incompatibilities
-   in available built-in functions on various systems.  */
-void* memcpy(void* to, const void* from, size_t count)
-{
-  register char* f = (char*)from;
-  register char* t = (char*)to;
-  register int i = count;
-
-  while (i-- > 0)
-    *t++ = *f++;
-
-  return to;
-}