diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-10-09 21:36:38 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-10-09 21:36:38 +0000 |
commit | 4f5a4c9bd517ec9aab8e62e221f962e9f2323cac (patch) | |
tree | 0e2f9bf3659b2fb5ff2d85467690715cb51635e5 | |
parent | 8c62e337b08882a369dd2b55aaa47f9a96b003e2 (diff) |
added the bool typedef, moved here from curl/curl.h
-rw-r--r-- | lib/setup.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/setup.h b/lib/setup.h index aa5f9dbac..ecb3dd5b0 100644 --- a/lib/setup.h +++ b/lib/setup.h @@ -57,6 +57,10 @@ #endif #endif +#ifndef __cplusplus /* (rabe) */ +typedef char bool; +#endif /* (rabe) */ + #include <stdio.h> #ifndef OS #ifdef WIN32 |