diff options
Diffstat (limited to 'userland/libc/string/memcpy.c')
-rw-r--r-- | userland/libc/string/memcpy.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/userland/libc/string/memcpy.c b/userland/libc/string/memcpy.c index 7c86b3a..7a9f01e 100644 --- a/userland/libc/string/memcpy.c +++ b/userland/libc/string/memcpy.c @@ -12,7 +12,6 @@ void *memcpy(void *dest, const void *src, uint32_t n) { for (; n >= 2; n -= 2, d += 2, s += 2) *(uint16_t *)d = *(uint16_t *)s; - for (; n; n--) *d++ = *s++; return dest; |