aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.7/libiberty/bcopy.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.7/libiberty/bcopy.c')
-rw-r--r--gcc-4.7/libiberty/bcopy.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/gcc-4.7/libiberty/bcopy.c b/gcc-4.7/libiberty/bcopy.c
deleted file mode 100644
index f9b7a8acd..000000000
--- a/gcc-4.7/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--;
- }
-}