aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.2.1-5666.3/gcc/config/memcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'gcc-4.2.1-5666.3/gcc/config/memcpy.c')
-rw-r--r--gcc-4.2.1-5666.3/gcc/config/memcpy.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/gcc-4.2.1-5666.3/gcc/config/memcpy.c b/gcc-4.2.1-5666.3/gcc/config/memcpy.c
deleted file mode 100644
index 58b1e4056..000000000
--- a/gcc-4.2.1-5666.3/gcc/config/memcpy.c
+++ /dev/null
@@ -1,12 +0,0 @@
-/* Public domain. */
-#include <stddef.h>
-
-void *
-memcpy (void *dest, const void *src, size_t len)
-{
- char *d = dest;
- const char *s = src;
- while (len--)
- *d++ = *s++;
- return dest;
-}