diff options
author | Darkvater <Darkvater@openttd.org> | 2006-08-01 19:19:39 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-08-01 19:19:39 +0000 |
commit | b79774e710e0b917b7b36e5788964557f900940f (patch) | |
tree | 2eded5a9e8e2fdec7e5ef0ef1ec20bbffa2b1702 | |
parent | 001d1a73d4d010ea4c55b8c4bb72fedf4c9591f2 (diff) | |
download | openttd-b79774e710e0b917b7b36e5788964557f900940f.tar.xz |
(svn r5697) -Fix [r5684]: tolower() was undefined for certain architectures, strangly VS2003 didn't complain, VS2005 did. Thanks glx
-rw-r--r-- | gfxinit.c | 1 | ||||
-rw-r--r-- | string.c | 2 | ||||
-rw-r--r-- | win32.c | 1 |
3 files changed, 0 insertions, 4 deletions
@@ -13,7 +13,6 @@ #include "newgrf.h" #include "md5.h" #include "variables.h" -#include <ctype.h> typedef struct MD5File { const char * const filename; // filename @@ -4,9 +4,7 @@ #include "string.h" #include <stdarg.h> -#if defined(UNIX) || defined(__OS2__) #include <ctype.h> // required for tolower() -#endif void ttd_strlcat(char *dst, const char *src, size_t size) { @@ -18,7 +18,6 @@ #include <fcntl.h> #include "variables.h" #include "win32.h" -#include <ctype.h> static bool _has_console; |