diff options
author | DJ Delorie <dj@delorie.com> | 2001-09-26 18:45:50 +0000 |
---|---|---|
committer | DJ Delorie <dj@delorie.com> | 2001-09-26 18:45:50 +0000 |
commit | bd7ce1bbb2ea47e045e6dd755cf16f05a2555309 (patch) | |
tree | 9fcc8e3e643152ed109636c5420b217c9d116002 /libiberty/bcopy.c | |
parent | 3d6b05970e5c5b951cf734883641e64090a3c370 (diff) | |
download | gdb-bd7ce1bbb2ea47e045e6dd755cf16f05a2555309.tar.gz |
merge from gcc
Diffstat (limited to 'libiberty/bcopy.c')
-rw-r--r-- | libiberty/bcopy.c | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/libiberty/bcopy.c b/libiberty/bcopy.c index b655363d879..70fa7e328cc 100644 --- a/libiberty/bcopy.c +++ b/libiberty/bcopy.c @@ -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 */ |