diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-12-21 07:20:23 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2001-12-21 07:20:23 +0000 |
commit | f4b24c219b149c8b202035ccba19cfa5341c8002 (patch) | |
tree | 75443f1c65204e8b871d2a46a9b1371eec994b91 /ruby.h | |
parent | 392160ee7bc9dd443ca632d74a4c49686102a1a1 (diff) | |
download | ruby-f4b24c219b149c8b202035ccba19cfa5341c8002.tar.gz ruby-f4b24c219b149c8b202035ccba19cfa5341c8002.tar.xz ruby-f4b24c219b149c8b202035ccba19cfa5341c8002.zip |
* dln.h, ruby.h, util.h: enable prototypes in C++.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1931 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ruby.h')
-rw-r--r-- | ruby.h | 15 |
1 files changed, 12 insertions, 3 deletions
@@ -52,6 +52,15 @@ extern "C" { # define volatile #endif +#ifdef __cplusplus +# ifndef HAVE_PROTOTYPES +# define HAVE_PROTOTYPES 1 +# endif +# ifndef HAVE_STDARG_PROTOTYPES +# define HAVE_STDARG_PROTOTYPES 1 +# endif +#endif + #undef _ #ifdef HAVE_PROTOTYPES # define _(args) args @@ -582,7 +591,7 @@ EXTERN VALUE rb_eLoadError; EXTERN VALUE rb_defout, rb_stdin, rb_stdout, rb_stderr, ruby_errinfo; static inline VALUE -#if defined(__cplusplus) +#if defined(HAVE_PROTOTYPES) rb_class_of(VALUE obj) #else rb_class_of(obj) @@ -599,7 +608,7 @@ rb_class_of(obj) } static inline int -#if defined(__cplusplus) +#if defined(HAVE_PROTOTYPES) rb_type(VALUE obj) #else rb_type(obj) @@ -616,7 +625,7 @@ rb_type(obj) } static inline int -#if defined(__cplusplus) +#if defined(HAVE_PROTOTYPES) rb_special_const_p(VALUE obj) #else rb_special_const_p(obj) |