diff options
| author | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-22 06:22:41 +0000 |
|---|---|---|
| committer | usa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2008-05-22 06:22:41 +0000 |
| commit | c68f6a89a835674e8aef54121a29cbd534db980c (patch) | |
| tree | 5199f84f251ddb6064c9af898356313fb21dcd3c /include/ruby/ruby.h | |
| parent | 75f398a6dfa78501c3c0ee9cef00f35901fd6541 (diff) | |
| download | ruby-c68f6a89a835674e8aef54121a29cbd534db980c.tar.gz ruby-c68f6a89a835674e8aef54121a29cbd534db980c.tar.xz ruby-c68f6a89a835674e8aef54121a29cbd534db980c.zip | |
* eval_intern.h, vm_core.h, include/ruby/intern.h, include/ruby/ruby.h,
vm.c: need to add const to prototypes, of course.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16526 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include/ruby/ruby.h')
| -rw-r--r-- | include/ruby/ruby.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/ruby/ruby.h b/include/ruby/ruby.h index a7afc5149..499e5ee64 100644 --- a/include/ruby/ruby.h +++ b/include/ruby/ruby.h @@ -788,7 +788,7 @@ VALUE rb_funcall(VALUE, ID, int, ...); VALUE rb_funcall2(VALUE, ID, int, const VALUE*); VALUE rb_funcall3(VALUE, ID, int, const VALUE*); int rb_scan_args(int, const VALUE*, const char*, ...); -VALUE rb_call_super(int, const VALUE*); +VALUE rb_call_super(const int, const VALUE* const); VALUE rb_gv_set(const char*, VALUE); VALUE rb_gv_get(const char*); @@ -817,17 +817,17 @@ PRINTF_ARGS(void rb_compile_warn(const char *, int, const char*, ...), 3, 4); typedef VALUE rb_block_call_func(VALUE, VALUE, int, VALUE*); -VALUE rb_each(VALUE); -VALUE rb_yield(VALUE); -VALUE rb_yield_values(int n, ...); -VALUE rb_yield_values2(int n, VALUE *argv); -VALUE rb_yield_splat(VALUE); +VALUE rb_each(const VALUE); +VALUE rb_yield(const VALUE); +VALUE rb_yield_values(const int n, ...); +VALUE rb_yield_values2(const int n, VALUE * const argv); +VALUE rb_yield_splat(const VALUE); int rb_block_given_p(void); void rb_need_block(void); -VALUE rb_iterate(VALUE(*)(VALUE),VALUE,VALUE(*)(ANYARGS),VALUE); -VALUE rb_block_call(VALUE,ID,int,VALUE*,VALUE(*)(ANYARGS),VALUE); -VALUE rb_rescue(VALUE(*)(ANYARGS),VALUE,VALUE(*)(ANYARGS),VALUE); -VALUE rb_rescue2(VALUE(*)(ANYARGS),VALUE,VALUE(*)(ANYARGS),VALUE,...); +VALUE rb_iterate(VALUE(* const)(VALUE),const VALUE,VALUE(* const)(ANYARGS),const VALUE); +VALUE rb_block_call(const VALUE,const ID,const int,VALUE* const,VALUE(* const)(ANYARGS),const VALUE); +VALUE rb_rescue(VALUE(* const)(ANYARGS),const VALUE,VALUE(* const)(ANYARGS),const VALUE); +VALUE rb_rescue2(VALUE(* const)(ANYARGS),const VALUE,VALUE(* const)(ANYARGS),VALUE,...); VALUE rb_ensure(VALUE(*)(ANYARGS),VALUE,VALUE(*)(ANYARGS),VALUE); VALUE rb_catch(const char*,VALUE(*)(ANYARGS),VALUE); VALUE rb_catch_obj(VALUE,VALUE(*)(ANYARGS),VALUE); |
