X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=arch%2Fs390%2Flib%2Fstring.c;h=8240cc77e06e2339694bebf40ed598026774fb18;hb=6a77f38946aaee1cd85eeec6cf4229b204c15071;hp=9cf22aa48f2003776d45fd8f9e8646eccb05e157;hpb=87fc8d1bb10cd459024a742c6a10961fefcef18f;p=linux-2.6.git diff --git a/arch/s390/lib/string.c b/arch/s390/lib/string.c index 9cf22aa48..8240cc77e 100644 --- a/arch/s390/lib/string.c +++ b/arch/s390/lib/string.c @@ -356,21 +356,6 @@ void *memcpy(void *dest, const void *src, size_t n) } EXPORT_SYMBOL(memcpy); -/** - * bcopy - Copy one area of memory to another - * @src: Where to copy from - * @dest: Where to copy to - * @n: 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. - */ -void bcopy(const void *srcp, void *destp, size_t n) -{ - __builtin_memcpy(destp, srcp, n); -} -EXPORT_SYMBOL(bcopy); - /** * memset - Fill a region of memory with the given value * @s: Pointer to the start of the area.