(svn r5697) -Fix [r5684]: tolower() was undefined for certain architectures, strangly VS2003 didn't complain, VS2005 did. Thanks glx

This commit is contained in:
Darkvater 2006-08-01 19:19:39 +00:00
parent 343a5e9788
commit c5a3632929
3 changed files with 0 additions and 4 deletions

View File

@ -13,7 +13,6 @@
#include "newgrf.h"
#include "md5.h"
#include "variables.h"
#include <ctype.h>
typedef struct MD5File {
const char * const filename; // filename

View File

@ -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)
{

View File

@ -18,7 +18,6 @@
#include <fcntl.h>
#include "variables.h"
#include "win32.h"
#include <ctype.h>
static bool _has_console;