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 | d58b5e3caa4df7469f1f0141af0e9ee12f1d9e73 (patch) | |
tree | 547bb7cfd996d768dca133d832f4e3b78aeb018f /src | |
parent | 054552a30ba7a720e4977465048ced924a1f84e4 (diff) | |
download | openttd-d58b5e3caa4df7469f1f0141af0e9ee12f1d9e73.tar.xz |
(svn r13000) -Fix (r12991): broken win9x compilation
Diffstat (limited to 'src')
-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 |