diff options
| author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-10 08:30:21 +0000 |
|---|---|---|
| committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-06-10 08:30:21 +0000 |
| commit | 9d85fa2d55a0cf88c3a6cdcbabea48583280c5d8 (patch) | |
| tree | ac833f8a2fbbfa47af1cd3c915062d83bc239f18 | |
| parent | a6f127d8c9147f6e25673d2da158ee3e08953477 (diff) | |
| download | ruby-9d85fa2d55a0cf88c3a6cdcbabea48583280c5d8.tar.gz ruby-9d85fa2d55a0cf88c3a6cdcbabea48583280c5d8.tar.xz ruby-9d85fa2d55a0cf88c3a6cdcbabea48583280c5d8.zip | |
* include/ruby/intern.h (rb_obj_instance_exec, rb_mod_module_exec):
added prototypes.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@17075 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | include/ruby/intern.h | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Tue Jun 10 17:30:19 2008 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * include/ruby/intern.h (rb_obj_instance_exec, rb_mod_module_exec): + added prototypes. + Tue Jun 10 17:00:29 2008 wanabe <s.wanabe@gmail.com> * util.c (ruby_strtod): ruby_strtod don't allow a trailing diff --git a/include/ruby/intern.h b/include/ruby/intern.h index bbaa5acaa..18f6ac9e1 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -257,7 +257,9 @@ VALUE rb_apply(VALUE, ID, VALUE); void rb_backtrace(void); ID rb_frame_this_func(void); VALUE rb_obj_instance_eval(int, VALUE*, VALUE); +VALUE rb_obj_instance_exec(int, VALUE*, VALUE); VALUE rb_mod_module_eval(int, VALUE*, VALUE); +VALUE rb_mod_module_exec(int, VALUE*, VALUE); void rb_load(VALUE, int); void rb_load_protect(VALUE, int, int*); NORETURN(void rb_jump_tag(int)); |
