summaryrefslogtreecommitdiff
path: root/src/common/memory_util.h
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-06-21 13:12:49 +0100
committerGravatar Emmanuel Gil Peyrot2015-06-28 00:36:54 +0100
commit2d044a67c932403b81fdde6f81d461c6e7c11efe (patch)
tree84e423036be6e126d39ad18b02662f6ea6677ea1 /src/common/memory_util.h
parentCommon: Cleanup profiler includes. (diff)
downloadyuzu-2d044a67c932403b81fdde6f81d461c6e7c11efe.tar.gz
yuzu-2d044a67c932403b81fdde6f81d461c6e7c11efe.tar.xz
yuzu-2d044a67c932403b81fdde6f81d461c6e7c11efe.zip
Common: Cleanup memory and misc includes.
Diffstat (limited to 'src/common/memory_util.h')
-rw-r--r--src/common/memory_util.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/common/memory_util.h b/src/common/memory_util.h
index 9fdbf1f12..9bf37c44f 100644
--- a/src/common/memory_util.h
+++ b/src/common/memory_util.h
@@ -4,9 +4,7 @@
4 4
5#pragma once 5#pragma once
6 6
7#ifndef _WIN32 7#include <cstddef>
8#include <sys/mman.h>
9#endif
10#include <string> 8#include <string>
11 9
12void* AllocateExecutableMemory(size_t size, bool low = true); 10void* AllocateExecutableMemory(size_t size, bool low = true);