summaryrefslogtreecommitdiff
path: root/src/common/mem_arena.cpp
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2015-05-06 04:06:12 -0300
committerGravatar Yuri Kunde Schlesner2015-05-07 15:45:22 -0300
commite1fbac3ca13d37d2625c11d30cfdece4327b446b (patch)
treeda5daf1999660dbc7e75290627051dd8534131c8 /src/common/mem_arena.cpp
parentCommon: Move alignment macros to common_funcs.h (diff)
downloadyuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.gz
yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.tar.xz
yuzu-e1fbac3ca13d37d2625c11d30cfdece4327b446b.zip
Common: Remove common.h
Diffstat (limited to 'src/common/mem_arena.cpp')
-rw-r--r--src/common/mem_arena.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/mem_arena.cpp b/src/common/mem_arena.cpp
index 76c70701d..f233d4a3a 100644
--- a/src/common/mem_arena.cpp
+++ b/src/common/mem_arena.cpp
@@ -17,12 +17,16 @@
17 17
18#include <string> 18#include <string>
19 19
20#include "common/memory_util.h" 20#include "common/logging/log.h"
21#include "common/mem_arena.h" 21#include "common/mem_arena.h"
22#include "common/memory_util.h"
22#include "common/string_util.h" 23#include "common/string_util.h"
23 24
24#ifndef _WIN32 25#ifndef _WIN32
25#include <fcntl.h> 26#include <fcntl.h>
27#include <string.h>
28#include <unistd.h>
29
26#ifdef ANDROID 30#ifdef ANDROID
27#include <sys/ioctl.h> 31#include <sys/ioctl.h>
28#include <linux/ashmem.h> 32#include <linux/ashmem.h>