From 2182e374330f16ad7ed0179ef44d83699cd260eb Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 7 Jan 2002 22:47:21 +0000 Subject: [PATCH] the bool typedef is now made unsigned, to make sure it stays that on all platforms, unrelated to what they might prefer by default --- lib/setup.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/setup.h b/lib/setup.h index cdec0f9..dc2280d 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) */ -- 2.7.4