Skip to content

Commit

Permalink
Add missing headers
Browse files Browse the repository at this point in the history
  • Loading branch information
Ken Murdock committed Nov 25, 2023
1 parent d9cdbfb commit 728731a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/support/sharedmem-unix.cc
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,12 @@ SOFTWARE.
#include "support/sharedmem.h"

#include <assert.h>
#include <fcntl.h>
#include <string.h>
#include <unistd.h>

#include <sys/mman.h>
#include <sys/stat.h>
#include <fcntl.h>

bool PCSX::SharedMem::init(const char* id, size_t size, bool initToZero) {
assert(m_mem == nullptr);
Expand Down

0 comments on commit 728731a

Please sign in to comment.