summaryrefslogtreecommitdiff
path: root/shared/systemFunctions.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shared/systemFunctions.cpp')
-rw-r--r--shared/systemFunctions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/shared/systemFunctions.cpp b/shared/systemFunctions.cpp
index 6d945d67..41ce9377 100644
--- a/shared/systemFunctions.cpp
+++ b/shared/systemFunctions.cpp
@@ -10,8 +10,8 @@
#include <wx/msw/wrapwin.h> //includes "windows.h"
#elif defined FFS_LINUX
-#include <string.h>
-#include <errno.h>
+#include <cstring>
+#include <cerrno>
#endif
bgstack15