Merge pull request #376 from bmiklautz/w32typedef

Fix for issue #374.
This commit is contained in:
Otavio Salvador 2012-01-30 05:44:32 -08:00
commit b4a89cee1e

View File

@ -68,7 +68,12 @@ typedef signed long long sint64;
#ifdef HAVE_STDBOOL_H #ifdef HAVE_STDBOOL_H
#include <stdbool.h> #include <stdbool.h>
#ifndef _WIN32
typedef int boolean;
#else
typedef unsigned char boolean; typedef unsigned char boolean;
#endif
#else #else