update for HEAD-2003021201
[reactos.git] / lib / msvcrt / string / memcpy.c
index 83077e1..894bc84 100644 (file)
@@ -1,12 +1,13 @@
 #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)
+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)