diff options
author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-08-13 08:43:32 +0000 |
---|---|---|
committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2015-08-13 08:43:32 +0000 |
commit | d22a09e189d772fe9c640aaf7b2c3fbbc5bcf039 (patch) | |
tree | 3382dcac44131e4c7e967d7aec3fe59a7a43df0f /iseq.h | |
parent | 9e524c68b6a4d2491a967543207c77cc77a425cf (diff) | |
download | ruby-d22a09e189d772fe9c640aaf7b2c3fbbc5bcf039.tar.gz |
* vm_core.h (rb_call_info_kw_arg_bytes): move the definition
to iseq.h because this function is shared with iseq.c and compile.c.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51565 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'iseq.h')
-rw-r--r-- | iseq.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -12,6 +12,12 @@ #ifndef RUBY_COMPILE_H #define RUBY_COMPILE_H +static inline size_t +rb_call_info_kw_arg_bytes(int keyword_len) +{ + return sizeof(rb_call_info_kw_arg_t) + sizeof(VALUE) * (keyword_len - 1); +} + RUBY_SYMBOL_EXPORT_BEGIN /* compile.c */ |