]> git.ipfire.org Git - thirdparty/gcc.git/blobdiff - libiberty/bcopy.c
configure.in (MAKEINFO, PERL): Detect these.
[thirdparty/gcc.git] / libiberty / bcopy.c
index b655363d879e58f4b7f9377702964fdbd989af71..70fa7e328cc68f558c638493c4c537621b8a088b 100644 (file)
@@ -1,19 +1,11 @@
 /* bcopy -- copy memory regions of arbitary length
 
-NAME
-       bcopy -- copy memory regions of arbitrary length
+@deftypefn Supplemental void bcopy (char *@var{in}, char *@var{out}, int @var{length})
 
-SYNOPSIS
-       void bcopy (char *in, char *out, int length)
+Copies @var{length} bytes from memory region @var{in} to region
+@var{out}.  The use of @code{bcopy} is deprecated in new programs.
 
-DESCRIPTION
-       Copy LENGTH bytes from memory region pointed to by IN to memory
-       region pointed to by OUT.
-
-BUGS
-       Significant speed improvements can be made in some cases by
-       implementing copies of multiple bytes simultaneously, or unrolling
-       the copy loop.
+@end deftypefn
 
 */