branch update for HEAD-2003021201
[reactos.git] / lib / crtdll / string / memcpy.c
index 7a1f7f4..7b2dd74 100644 (file)
@@ -1,12 +1,12 @@
-#include <crtdll/string.h>
+#include <msvcrt/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)
+void* memcpy(void* to, const void* from, size_t count)
 {
-  register char *f = (char *)from;
-  register char *t = (char *)to;
+  register char* f = (char*)from;
+  register char* t = (char*)to;
   register int i = count;
 
   while (i-- > 0)