diff options
author | Freya Murphy <freya@freyacat.org> | 2025-04-03 23:04:38 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-04-03 23:04:38 -0400 |
commit | d0854aa095421f225f7004cdcca0b8ad074303c5 (patch) | |
tree | d7c52aee6c0aa574e1b4230b5f28d49342470862 /lib/memcpyv.c | |
parent | load multiboot memory map, heap is done!!! (diff) | |
download | comus-d0854aa095421f225f7004cdcca0b8ad074303c5.tar.gz comus-d0854aa095421f225f7004cdcca0b8ad074303c5.tar.bz2 comus-d0854aa095421f225f7004cdcca0b8ad074303c5.zip |
fmt
Diffstat (limited to '')
-rw-r--r-- | lib/memcpyv.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/memcpyv.c b/lib/memcpyv.c index a4dcd22..610daf2 100644 --- a/lib/memcpyv.c +++ b/lib/memcpyv.c @@ -1,7 +1,7 @@ #include <string.h> -volatile void *memcpyv(volatile void *restrict dest, const volatile void *restrict src, - size_t n) +volatile void *memcpyv(volatile void *restrict dest, + const volatile void *restrict src, size_t n) { volatile char *d = dest; volatile const char *s = src; |