summaryrefslogtreecommitdiffstats
path: root/src/common/file_util.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-09-11 00:44:08 +0200
committerbunnei <bunneidev@gmail.com>2014-09-11 00:44:08 +0200
commitd79fe3ebaadbc19e8ffe5075bad51a9735aafb38 (patch)
tree49d8b9dc37a2f9a541aef587c7bb50f9fe3c01f7 /src/common/file_util.cpp
parentMerge pull request #104 from archshift/removal (diff)
parentcore: Prune redundant includes (diff)
downloadyuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.tar
yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.tar.gz
yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.tar.bz2
yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.tar.lz
yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.tar.xz
yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.tar.zst
yuzu-d79fe3ebaadbc19e8ffe5075bad51a9735aafb38.zip
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r--src/common/file_util.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index b6ff2e40b..04d222ca1 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -4,9 +4,7 @@
#include "common/common.h"
-#include "common/common_paths.h"
#include "common/file_util.h"
-#include "common/string_util.h"
#ifdef _WIN32
#include <windows.h>
@@ -16,10 +14,7 @@
#include <io.h>
#include <direct.h> // getcwd
#else
-#include <cerrno>
-#include <cstdlib>
#include <sys/param.h>
-#include <sys/types.h>
#include <dirent.h>
#endif
@@ -32,8 +27,6 @@
#include <algorithm>
#include <sys/stat.h>
-#include "common/string_util.h"
-
#ifndef S_ISDIR
#define S_ISDIR(m) (((m)&S_IFMT) == S_IFDIR)
#endif