From 728731afb294b042a9e3316f0d1244002d63674d Mon Sep 17 00:00:00 2001 From: Ken Murdock Date: Sat, 25 Nov 2023 02:13:22 +0000 Subject: [PATCH] Add missing headers --- src/support/sharedmem-unix.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/support/sharedmem-unix.cc b/src/support/sharedmem-unix.cc index 0992c4adb..5257632e9 100644 --- a/src/support/sharedmem-unix.cc +++ b/src/support/sharedmem-unix.cc @@ -29,9 +29,12 @@ SOFTWARE. #include "support/sharedmem.h" #include +#include +#include +#include + #include #include -#include bool PCSX::SharedMem::init(const char* id, size_t size, bool initToZero) { assert(m_mem == nullptr);