summaryrefslogtreecommitdiff
path: root/kernel/libc/string/memcpy.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/libc/string/memcpy.c')
-rw-r--r--kernel/libc/string/memcpy.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/libc/string/memcpy.c b/kernel/libc/string/memcpy.c
index 1313261..8b03536 100644
--- a/kernel/libc/string/memcpy.c
+++ b/kernel/libc/string/memcpy.c
@@ -1,7 +1,6 @@
#include "../include/string.h"
-void *
-memcpy(void *dest, const void *src, u32 n) {
+void *memcpy(void *dest, const void *src, u32 n) {
unsigned char *d = dest;
const unsigned char *s = src;