summaryrefslogtreecommitdiff
path: root/libiberty/bcopy.c
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2015-03-15 21:08:54 -0400
committermidipix <writeonce@midipix.org>2015-03-15 21:08:54 -0400
commit18bc92cb83fdf0f0472432fb7c30914a9cd4df01 (patch)
tree2d11f8c8d084e113cae1ef6175fc2e888e570f58 /libiberty/bcopy.c
parentcf7e0e7656729af8bd8f3bb86c4d51f1089a0c37 (diff)
downloadcbb-gcc-4.6.4-18bc92cb83fdf0f0472432fb7c30914a9cd4df01.tar.bz2
cbb-gcc-4.6.4-18bc92cb83fdf0f0472432fb7c30914a9cd4df01.tar.xz
libiberty: remove source files that either duplicate functionality
already present in all modern libc implementations, or are incompatible with modern development environments, or both.
Diffstat (limited to 'libiberty/bcopy.c')
-rw-r--r--libiberty/bcopy.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/libiberty/bcopy.c b/libiberty/bcopy.c
deleted file mode 100644
index f9b7a8acd..000000000
--- a/libiberty/bcopy.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/* bcopy -- copy memory regions of arbitary length
-
-@deftypefn Supplemental void bcopy (char *@var{in}, char *@var{out}, int @var{length})
-
-Copies @var{length} bytes from memory region @var{in} to region
-@var{out}. The use of @code{bcopy} is deprecated in new programs.
-
-@end deftypefn
-
-*/
-
-#include <stddef.h>
-
-void
-bcopy (const void *src, void *dest, size_t len)
-{
- if (dest < src)
- {
- const char *firsts = (const char *) src;
- char *firstd = (char *) dest;
- while (len--)
- *firstd++ = *firsts++;
- }
- else
- {
- const char *lasts = (const char *)src + (len-1);
- char *lastd = (char *)dest + (len-1);
- while (len--)
- *lastd-- = *lasts--;
- }
-}