From ea80946978cf6406e0bf10f475788269e5ab4400 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 16 Dec 2004 19:18:17 +0000 Subject: Using errno isn't really portable; don't have time to fix this properly right now svn-id: r16086 --- simon/saveload.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/simon/saveload.cpp b/simon/saveload.cpp index 34c8903722..06b56fa56c 100644 --- a/simon/saveload.cpp +++ b/simon/saveload.cpp @@ -21,6 +21,13 @@ #include "stdafx.h" +#ifndef _WIN32_WCE +// FIXME TODO FIXME: Using errno is not really portable! +// We should get rid of this, possibly by adding (clear)ioFailed methods +// to the SaveFile class. +#include +#endif + #include "gui/about.h" #include "gui/message.h" -- cgit v1.2.3