summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-12 03:30:45 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-09-12 03:30:45 +0000
commit6518ae70252bf7beea8061d47735a4ab3397b066 (patch)
tree119a0775a465f2f7ca16c8da1faf6d9e935da3fa /eval.c
parent24df6496a7b85a7d6951e1648e9aab0cff90b543 (diff)
downloadruby-6518ae70252bf7beea8061d47735a4ab3397b066.tar.gz
ruby-6518ae70252bf7beea8061d47735a4ab3397b066.tar.xz
ruby-6518ae70252bf7beea8061d47735a4ab3397b066.zip
* intern.h (rb_disable_super, rb_enable_super): replace with dummy
expressions instead of prototypes. the functions remain yet for binary compatibility. [ruby-talk:81758] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@4551 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 513af340c..4eeb9670b 100644
--- a/eval.c
+++ b/eval.c
@@ -460,6 +460,9 @@ rb_mod_remove_method(argc, argv, mod)
return mod;
}
+#undef rb_disable_super
+#undef rb_enable_super
+
void
rb_disable_super(klass, name)
VALUE klass;