diff options
author | glx <glx@openttd.org> | 2008-05-07 21:51:13 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2008-05-07 21:51:13 +0000 |
commit | 6e6102e20d3b8bb5dbe0b8129c9ab7b37ab666d6 (patch) | |
tree | 547bb7cfd996d768dca133d832f4e3b78aeb018f | |
parent | 19910188faf036dc79b5865f8b702a92fd94387d (diff) | |
download | openttd-6e6102e20d3b8bb5dbe0b8129c9ab7b37ab666d6.tar.xz |
(svn r13000) -Fix (r12991): broken win9x compilation
-rw-r--r-- | src/fios.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fios.cpp b/src/fios.cpp index 67d225f76..2145378a3 100644 --- a/src/fios.cpp +++ b/src/fios.cpp @@ -18,6 +18,9 @@ #ifdef WIN32 # include <tchar.h> +# ifndef UNICODE +# include <io.h> +# endif # define access _taccess # define unlink _tunlink #else |