summaryrefslogtreecommitdiff
path: root/shared/fileIO.h
diff options
context:
space:
mode:
Diffstat (limited to 'shared/fileIO.h')
-rw-r--r--shared/fileIO.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/shared/fileIO.h b/shared/fileIO.h
index 313ceece..a04d8a0e 100644
--- a/shared/fileIO.h
+++ b/shared/fileIO.h
@@ -12,7 +12,7 @@
#ifdef FFS_WIN
#include <wx/msw/wrapwin.h> //includes "windows.h"
#elif defined FFS_LINUX
-#include <stdio.h>
+#include <cstdio>
#endif
#include "zstring.h"
bgstack15