diff options
author | Galen Sagarin <gps5307@rit.edu> | 2025-04-29 14:18:40 -0400 |
---|---|---|
committer | Galen Sagarin <gps5307@rit.edu> | 2025-04-29 14:18:40 -0400 |
commit | ae2cdd83ba4a0cae161db0b29031d5591005fa34 (patch) | |
tree | 82fbdfcbb1fe4e3b5e232db195c8c331d69489fd /kernel/lib/memmovev.c | |
parent | Started writing fat.c (diff) | |
parent | fs header changes (diff) | |
download | comus-ae2cdd83ba4a0cae161db0b29031d5591005fa34.tar.gz comus-ae2cdd83ba4a0cae161db0b29031d5591005fa34.tar.bz2 comus-ae2cdd83ba4a0cae161db0b29031d5591005fa34.zip |
Merge branch 'main' of https://github.com/kenshineto/kern into fat32
Merging main into here
Diffstat (limited to 'kernel/lib/memmovev.c')
-rw-r--r-- | kernel/lib/memmovev.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/kernel/lib/memmovev.c b/kernel/lib/memmovev.c index 56684a5..7884cef 100644 --- a/kernel/lib/memmovev.c +++ b/kernel/lib/memmovev.c @@ -1,6 +1,7 @@ #include <lib.h> -volatile void *memmovev(volatile void *dest, const volatile void *src, size_t n) +volatile void *memmovev(volatile void *dest, const volatile void *src, + register size_t n) { volatile char *d = dest; volatile const char *s = src; |