diff options
author | DJ Delorie <dj@redhat.com> | 2005-03-27 05:28:42 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2005-03-27 05:28:42 +0000 |
commit | 9334f9c6cd576128ec4fc891b5fcf267a7fca7fb (patch) | |
tree | fda195cba89e4178623ea39866f41e6e28eb67c1 /libiberty/bcopy.c | |
parent | * win32-nat.c (handle_exception): Treat win32 routines which check for valid (diff) | |
download | binutils-gdb-9334f9c6cd576128ec4fc891b5fcf267a7fca7fb.tar.gz binutils-gdb-9334f9c6cd576128ec4fc891b5fcf267a7fca7fb.tar.bz2 binutils-gdb-9334f9c6cd576128ec4fc891b5fcf267a7fca7fb.zip |
merge from gcc
Diffstat (limited to 'libiberty/bcopy.c')
-rw-r--r-- | libiberty/bcopy.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/libiberty/bcopy.c b/libiberty/bcopy.c index 70fa7e328cc..09442474645 100644 --- a/libiberty/bcopy.c +++ b/libiberty/bcopy.c @@ -10,9 +10,7 @@ Copies @var{length} bytes from memory region @var{in} to region */ void -bcopy (src, dest, len) - register char *src, *dest; - int len; +bcopy (register char *src, register char *dest, int len) { if (dest < src) while (len--) |