aboutsummaryrefslogtreecommitdiff
path: root/src/userspace/mlibc/string/memcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userspace/mlibc/string/memcpy.c')
-rw-r--r--src/userspace/mlibc/string/memcpy.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/userspace/mlibc/string/memcpy.c b/src/userspace/mlibc/string/memcpy.c
deleted file mode 100644
index eec798b..0000000
--- a/src/userspace/mlibc/string/memcpy.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stddef.h>
-
-void *memcpy(void *dest, const void *src, size_t count)
-{
- const char *sp = (const char *)src;
- char *dp = (char *)dest;
- for (; count != 0; count--)
- *dp++ = *sp++;
- return dest;
-} \ No newline at end of file