From d0854aa095421f225f7004cdcca0b8ad074303c5 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 3 Apr 2025 23:04:38 -0400 Subject: fmt --- include/string.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/string.h') diff --git a/include/string.h b/include/string.h index 1977ad2..f966981 100644 --- a/include/string.h +++ b/include/string.h @@ -60,7 +60,7 @@ extern void *memset(void *restrict dest, int c, size_t n); * @returns a pointer to dest */ extern volatile void *memcpyv(volatile void *restrict dest, - const volatile void *restrict src, size_t n); + const volatile void *restrict src, size_t n); /** * Copy the first n bytes from memory area src to memory area dest. The memory @@ -72,7 +72,7 @@ extern volatile void *memcpyv(volatile void *restrict dest, * @returns a pointer to dest */ extern volatile void *memmovev(volatile void *restrict dest, - const volatile void *restrict src, size_t n); + const volatile void *restrict src, size_t n); /** * Fill the first n bytes of the memory region dest with the constant byte c. -- cgit v1.2.3-freya