update for HEAD-2003091401
[reactos.git] / lib / ntdll / string / memcpy.c
diff --git a/lib/ntdll/string/memcpy.c b/lib/ntdll/string/memcpy.c
deleted file mode 100644 (file)
index 7d18be3..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include <string.h>
-
-/* 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;
-}