branch update for HEAD-2003091401
[reactos.git] / ntoskrnl / rtl / memcpy.c
diff --git a/ntoskrnl/rtl/memcpy.c b/ntoskrnl/rtl/memcpy.c
deleted file mode 100644 (file)
index 7373985..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * COPYRIGHT:       See COPYING in the top level directory
- * PROJECT:         ReactOS kernel
- * FILE:            ntoskrnl/rtl/memcpy.c
- * PROGRAMMER:      David Welch (welch@cwcom.net)
- * UPDATE HISTORY:
- */
-
-/* INCLUDES *****************************************************************/
-
-#include <ddk/ntddk.h>
-#include <string.h>
-
-#define NDEBUG
-#include <internal/debug.h>
-
-/* FUNCTIONS *****************************************************************/
-
-#undef memcpy
-void *memcpy (void *to, const void *from, size_t count)
-{
-  const char *f = (char*)from;
-  char *t = (char *)to;
-  int i = count;
-
-  while (i-- > 0)
-    *t++ = *f++;
-
-  return to;
-}
-