summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2012-04-05 08:47:49 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2012-04-05 08:47:49 +0200
commitd3cb611fc61c7c619ec7b89b920f66b84b8c8595 (patch)
tree73363c809bd8d7a799596c8d4bebf8d9943607a7 /lib
parent96a43caf5ac88cd567853c4b7799853522a6f28f (diff)
downloadbarebox-d3cb611fc61c7c619ec7b89b920f66b84b8c8595.tar.gz
barebox-d3cb611fc61c7c619ec7b89b920f66b84b8c8595.tar.xz
string: remove unused bcopy function
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'lib')
-rw-r--r--lib/string.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/lib/string.c b/lib/string.c
index 77435aad79..28650883cc 100644
--- a/lib/string.c
+++ b/lib/string.c
@@ -420,30 +420,6 @@ void * memset(void * s,int c,size_t count)
#endif
EXPORT_SYMBOL(memset);
-#ifndef __HAVE_ARCH_BCOPY
-/**
- * bcopy - Copy one area of memory to another
- * @src: Where to copy from
- * @dest: Where to copy to
- * @count: The size of the area.
- *
- * Note that this is the same as memcpy(), with the arguments reversed.
- * memcpy() is the standard, bcopy() is a legacy BSD function.
- *
- * You should not use this function to access IO space, use memcpy_toio()
- * or memcpy_fromio() instead.
- */
-char * bcopy(const char * src, char * dest, int count)
-{
- char *tmp = dest;
-
- while (count--)
- *tmp++ = *src++;
-
- return dest;
-}
-#endif
-
#ifndef __HAVE_ARCH_MEMCPY
/**
* memcpy - Copy one area of memory to another