From: Daniel Stenberg Date: Mon, 7 Jan 2002 22:47:21 +0000 (+0000) Subject: the bool typedef is now made unsigned, to make sure it stays that on all X-Git-Tag: curl-7_9_3-pre1~7 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=2182e374330f16ad7ed0179ef44d83699cd260eb;p=thirdparty%2Fcurl.git the bool typedef is now made unsigned, to make sure it stays that on all platforms, unrelated to what they might prefer by default --- diff --git a/lib/setup.h b/lib/setup.h index cdec0f9d66..dc2280da50 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -52,7 +52,7 @@ #endif #ifndef __cplusplus /* (rabe) */ -typedef char bool; +typedef unsigned char bool; #define typedef_bool #endif /* (rabe) */