compat.c - need to include <ctype.h> to get rid of implicit declaration of

tolower (confirmed on both Wii and OSX)
This commit is contained in:
twinaphex 2013-12-12 21:04:45 +01:00
parent 21ae4c24af
commit 4a0f8e4346

View File

@ -23,6 +23,7 @@
#include "../boolean.h"
#include <stddef.h>
#include <stdlib.h>
#include <ctype.h>
#ifdef _MSC_VER
#include "../msvc/msvc_compat.h"
#endif