diff options
author | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-12-06 15:33:54 +0000 |
---|---|---|
committer | naruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-12-06 15:33:54 +0000 |
commit | 0cee9e9874e77e18f08fbd46bc3883d56d0a6f40 (patch) | |
tree | b6fbcc32bb244923ed247b8c94908e575289d45b /internal.h | |
parent | 1692ccaf9f49c001b18de8b7296ede3f68190ab8 (diff) |
Add missing declaration to export
Additional fix for r66200:
https://rubyci.org/logs/rubyci.s3.amazonaws.com/icc-x64/ruby-trunk/log/20181206T130002Z.fail.html.gz
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66254 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r-- | internal.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/internal.h b/internal.h index bc9b1d6355..7f6b063750 100644 --- a/internal.h +++ b/internal.h @@ -2224,6 +2224,7 @@ VALUE rb_thread_io_blocking_region(rb_blocking_function_t *func, void *data1, in /* array.c (export) */ void rb_ary_detransient(VALUE a); VALUE *rb_ary_ptr_use_start(VALUE ary); +void rb_ary_ptr_use_end(VALUE ary); /* bignum.c (export) */ VALUE rb_big_mul_normal(VALUE x, VALUE y); |