diff options
author | glx <glx@openttd.org> | 2011-05-28 03:23:34 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2011-05-28 03:23:34 +0000 |
commit | 986d5e950d074d86f5d6098c64946a7b9d2f60b7 (patch) | |
tree | 3236744c94f548e11870c2905d4bc7228554be47 /src/fios.cpp | |
parent | 6e3ef9fa1a6705e91467678ce615c630ee4d343d (diff) | |
download | openttd-986d5e950d074d86f5d6098c64946a7b9d2f60b7.tar.xz |
(svn r22502) -Fix (r22501): WIN32 compilation
Diffstat (limited to 'src/fios.cpp')
-rw-r--r-- | src/fios.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/fios.cpp b/src/fios.cpp index 2856c0c5a..97eb13b18 100644 --- a/src/fios.cpp +++ b/src/fios.cpp @@ -19,9 +19,7 @@ #include "string_func.h" #include <sys/stat.h> -#ifdef WIN32 -# define access _taccess -#else +#ifndef WIN32 # include <unistd.h> #endif /* WIN32 */ |