daily update
[deliverable/binutils-gdb.git] / libiberty / memcpy.c
index 707a9f573850715f70d69641b3bc22bab2f3efb4..0f2bac7ac2c8a28fe9035587e9a18b9967dee3cb 100644 (file)
@@ -2,15 +2,14 @@
    This function is in the public domain.  */
 
 /*
-NAME
-       memcpy -- copy memory regions of arbitary length
 
-SYNOPSIS
-       void* memcpy (void *out, const void *in, size_t n);
+@deftypefn Supplemental void* memcpy (void *@var{out}, const void *@var{in}, size_t @var{length})
+
+Copies @var{length} bytes from memory region @var{in} to region
+@var{out}.  Returns a pointer to @var{out}.
+
+@end deftypefn
 
-DESCRIPTION
-       Copy LENGTH bytes from memory region pointed to by IN to memory
-       region pointed to by OUT.
 */
 
 #include <ansidecl.h>
This page took 0.022918 seconds and 4 git commands to generate.