ref(libkern): changed to match libterm

This commit is contained in:
Karina
2026-02-01 00:26:22 +04:00
parent e21f5ef52f
commit 02b36283a5
13 changed files with 88 additions and 81 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
static char* olds;
void* MemorySet(void* destination, UInt8 value, usize count) {
void* MemorySet(void* destination, UInt8 value, UInt64 count) {
UInt8* bytePointer = (UInt8*) destination;
while (count--) {
*bytePointer++ = (UInt8)value;