9 lines
230 B
C
9 lines
230 B
C
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
// Copyright (c) 2026 0xKSor
|
|
|
|
#include <Lib/Stubs.h>
|
|
#include <Lib/String.h>
|
|
|
|
void* memset(void* destination, int value, Size count) {
|
|
return MemorySet(destination, value, count);
|
|
} |