From b4bfc3aa79dfd89cbd51cd70cbc4eee199000955 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 13 Mar 2009 08:04:11 +0000 Subject: * include/ruby/ruby.h (bool): not define to get rid of conflict against curses. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- include/ruby/ruby.h | 26 ++------------------------ 1 file changed, 2 insertions(+), 24 deletions(-) (limited to 'include') diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index b4a0011682..301a68f900 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -309,28 +309,6 @@ enum ruby_special_consts { RUBY_SPECIAL_SHIFT = 8 }; -#if defined HAVE_STDBOOL_H -# include -#elif defined __cplusplus -typedef bool _Bool; -#else -# ifndef HAVE__BOOL -# define _Bool signed char -# endif -# ifndef bool -# define bool _Bool -# endif -# ifndef false -# define false 0 -# endif -# ifndef true -# define true 1 -# endif -# ifndef __bool_true_false_are_defined -# define __bool_true_false_are_defined 1 -# endif -#endif - #define Qfalse ((VALUE)RUBY_Qfalse) #define Qtrue ((VALUE)RUBY_Qtrue) #define Qnil ((VALUE)RUBY_Qnil) @@ -1171,8 +1149,8 @@ rb_type(VALUE obj) static inline int rb_special_const_p(VALUE obj) { - if (SPECIAL_CONST_P(obj)) return true; - return false; + if (SPECIAL_CONST_P(obj)) return (int)Qtrue; + return (int)Qfalse; } #include "ruby/missing.h" -- cgit v1.2.3