diff options
| author | 2014-08-17 13:54:06 -0400 | |
|---|---|---|
| committer | 2014-08-17 13:54:06 -0400 | |
| commit | da6f24b37470064f10e68186965949d728fecb3c (patch) | |
| tree | 61126f8f211a345e9ef568f7de584223f17467a9 /src/common/file_util.cpp | |
| parent | Common: Move header guards over to pragma once (diff) | |
| download | yuzu-da6f24b37470064f10e68186965949d728fecb3c.tar.gz yuzu-da6f24b37470064f10e68186965949d728fecb3c.tar.xz yuzu-da6f24b37470064f10e68186965949d728fecb3c.zip | |
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.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/file_util.cpp b/src/common/file_util.cpp index 47ad964db..b6ff2e40b 100644 --- a/src/common/file_util.cpp +++ b/src/common/file_util.cpp | |||
| @@ -16,11 +16,11 @@ | |||
| 16 | #include <io.h> | 16 | #include <io.h> |
| 17 | #include <direct.h> // getcwd | 17 | #include <direct.h> // getcwd |
| 18 | #else | 18 | #else |
| 19 | #include <cerrno> | ||
| 20 | #include <cstdlib> | ||
| 19 | #include <sys/param.h> | 21 | #include <sys/param.h> |
| 20 | #include <sys/types.h> | 22 | #include <sys/types.h> |
| 21 | #include <dirent.h> | 23 | #include <dirent.h> |
| 22 | #include <errno.h> | ||
| 23 | #include <stdlib.h> | ||
| 24 | #endif | 24 | #endif |
| 25 | 25 | ||
| 26 | #if defined(__APPLE__) | 26 | #if defined(__APPLE__) |