summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2002-01-07 22:47:21 +0000
committerDaniel Stenberg <daniel@haxx.se>2002-01-07 22:47:21 +0000
commit2182e374330f16ad7ed0179ef44d83699cd260eb (patch)
treedb1018aa858e56e74405507fa6d135aaa8cf4657 /lib
parent1de82b220dcfdea63193e3d7a7237e4e25b879d2 (diff)
downloadcurl-2182e374330f16ad7ed0179ef44d83699cd260eb.tar.gz
the bool typedef is now made unsigned, to make sure it stays that on all
platforms, unrelated to what they might prefer by default
Diffstat (limited to 'lib')
-rw-r--r--lib/setup.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/setup.h b/lib/setup.h
index cdec0f9d6..dc2280da5 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) */