summaryrefslogtreecommitdiff
path: root/shared/file_io.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shared/file_io.cpp')
-rw-r--r--shared/file_io.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/file_io.cpp b/shared/file_io.cpp
index 95c14c49..78796bbe 100644
--- a/shared/file_io.cpp
+++ b/shared/file_io.cpp
@@ -12,7 +12,7 @@
#ifdef FFS_WIN
#include "long_path_prefix.h"
#elif defined FFS_LINUX
-#include <errno.h>
+#include <cerrno>
#endif
using namespace ffs3;
bgstack15