diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-02-09 06:16:08 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-02-09 06:16:08 +0000 |
commit | 8fc90b887bc94ca7a47b8a9e2bb9a2efb8b9007e (patch) | |
tree | 6bf54a192c7c6c8b98eef342adac4684eca77c9d /intern.h | |
parent | 7aa4cb1f0670ff02767dfda8b0dd7fb4accb170f (diff) | |
download | ruby-8fc90b887bc94ca7a47b8a9e2bb9a2efb8b9007e.tar.gz |
* intern.h (HAVE_RB_DEFINE_ALLOC_FUNC, RB_CVAR_SET_4ARGS):
define to 1.
* ruby.h (NORETURN_STYLE_NEW): ditto.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3470 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'intern.h')
-rw-r--r-- | intern.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -147,7 +147,7 @@ VALUE rb_f_abort _((int,VALUE*)); void rb_remove_method _((VALUE, const char*)); void rb_disable_super _((VALUE, const char*)); void rb_enable_super _((VALUE, const char*)); -#define HAVE_RB_DEFINE_ALLOC_FUNC +#define HAVE_RB_DEFINE_ALLOC_FUNC 1 void rb_define_alloc_func _((VALUE, VALUE (*)(VALUE))); void rb_undef_alloc_func _((VALUE)); void rb_clear_cache _((void)); @@ -454,7 +454,7 @@ void rb_const_assign _((VALUE, ID, VALUE)); VALUE rb_mod_constants _((VALUE)); void rb_autoload_load _((ID)); VALUE rb_cvar_defined _((VALUE, ID)); -#define RB_CVAR_SET_4ARGS +#define RB_CVAR_SET_4ARGS 1 void rb_cvar_set _((VALUE, ID, VALUE, int)); VALUE rb_cvar_get _((VALUE, ID)); void rb_cv_set _((VALUE, const char*, VALUE)); |