diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-05-25 21:42:49 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2004-05-25 21:42:49 +0000 |
commit | 521a0e978b23922fb131aeb585ae374ac15af52b (patch) | |
tree | 52dc5b0acf08d0380b475cb6713c61e3ab419705 /libexec/ld.so/alpha | |
parent | 1135e6b13f801a3e4873f4605e20a61b0488ead0 (diff) |
provide one version of _dl_bcopy instead of copy in every arch; drahn@ ok
Diffstat (limited to 'libexec/ld.so/alpha')
-rw-r--r-- | libexec/ld.so/alpha/rtld_machine.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/libexec/ld.so/alpha/rtld_machine.c b/libexec/ld.so/alpha/rtld_machine.c index 6c2c80341b1..b8e90399d8d 100644 --- a/libexec/ld.so/alpha/rtld_machine.c +++ b/libexec/ld.so/alpha/rtld_machine.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtld_machine.c,v 1.30 2004/05/25 18:07:20 mickey Exp $ */ +/* $OpenBSD: rtld_machine.c,v 1.31 2004/05/25 21:42:47 mickey Exp $ */ /* * Copyright (c) 1999 Dale Rahn @@ -45,18 +45,6 @@ #include "archdep.h" #include "resolve.h" -void -_dl_bcopy(const void *src, void *dest, int size) -{ - unsigned const char *psrc = src; - unsigned char *pdest = dest; - int i; - - for (i = 0; i < size; i++) { - pdest[i] = psrc[i]; - } -} - int _dl_md_reloc(elf_object_t *object, int rel, int relasz) { |