From 82885d35ea1b52982ebcf3a58e9d328cfa4e933a Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sun, 19 Apr 2020 11:03:44 -0700 Subject: fix: minor libc changes --- sys/libc/string.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'sys/libc') diff --git a/sys/libc/string.c b/sys/libc/string.c index 8fcdfd2..0e41efa 100644 --- a/sys/libc/string.c +++ b/sys/libc/string.c @@ -2,7 +2,7 @@ #include void* -memcopy(void* dst, void* src, intptr n) +memcopy(void *dst, void *src, intptr n) { byte *e, *s, *d; @@ -16,7 +16,7 @@ memcopy(void* dst, void* src, intptr n) } void* -memmove(void* dst, void* src, intptr n) +memmove(void *dst, void *src, intptr n) { byte *e, *s, *d; s = src; @@ -39,7 +39,7 @@ memmove(void* dst, void* src, intptr n) } void* -memset(void* buf, int val, intptr n) +memset(void *buf, int val, intptr n) { byte *b, *e; b = buf; @@ -52,7 +52,7 @@ memset(void* buf, int val, intptr n) } int -memcmp(void* lhs, void* rhs, intptr n) +memcmp(void *lhs, void *rhs, intptr n) { byte *bl, *br, *e; -- cgit v1.2.1