Fix for issue #374.

This commit is contained in:
Bernhard Miklautz 2012-01-30 12:05:50 +01:00
parent 012825e3b6
commit 06c79294ca
1 changed files with 5 additions and 0 deletions

View File

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