hotfix: replace memset declaration by cstring include

fixes the Arch package build (https://aur.archlinux.org/packages/shadps4-git#comment-1023984)
This commit is contained in:
Vinicius Rangel 2025-05-12 18:32:26 -03:00
parent b3abb83fc5
commit 5ab5fa7024
No known key found for this signature in database
GPG key ID: A5B154D904B761D9

View file

@ -3,10 +3,9 @@
#pragma once
#include <cstring>
#include "common/types.h"
void* memset(void* ptr, int value, size_t num);
namespace Xbyak {
class CodeGenerator;
}