aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/common/file_util.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash <mathew1800@gmail.com>2014-08-17 13:54:06 -0400
committerGravatar Lioncash <mathew1800@gmail.com>2014-08-17 13:54:06 -0400
commitda6f24b37470064f10e68186965949d728fecb3c (patch)
tree61126f8f211a345e9ef568f7de584223f17467a9 /src/common/file_util.cpp
parent90e994471a385d2b965e3843e1f693ccba6fb699 (diff)
Common: Move remaining C header includes over to their C++ equivalent
Diffstat (limited to 'src/common/file_util.cpp')
-rw-r--r--src/common/file_util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp
index 47ad964d..b6ff2e40 100644
--- a/src/common/file_util.cpp
+++ b/src/common/file_util.cpp
@@ -16,11 +16,11 @@
#include <io.h>
#include <direct.h> // getcwd
#else
+#include <cerrno>
+#include <cstdlib>
#include <sys/param.h>
#include <sys/types.h>
#include <dirent.h>
-#include <errno.h>
-#include <stdlib.h>
#endif
#if defined(__APPLE__)