diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-01-31 00:03:28 -0800 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-01-31 00:03:28 -0800 |
| commit | 6cf42a8200f7d9215a2da5c0203d27c472577b59 (patch) | |
| tree | 39fdc6c93bb1c6f4bcca37ebbde99a400ca618e5 /src/class.c | |
| parent | 4e2a9509dc8f727b4dfb627d79a22bf1177a2f40 (diff) | |
| parent | f2a62a74ed22a535ebea4dd71faf05bda6011fd4 (diff) | |
| download | mruby-6cf42a8200f7d9215a2da5c0203d27c472577b59.tar.gz mruby-6cf42a8200f7d9215a2da5c0203d27c472577b59.zip | |
Merge pull request #1671 from cremno/extern-cleanup
clean up external symbols
Diffstat (limited to 'src/class.c')
| -rw-r--r-- | src/class.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/class.c b/src/class.c index 4f246655e..612098548 100644 --- a/src/class.c +++ b/src/class.c @@ -866,7 +866,7 @@ mrb_mod_included_modules(mrb_state *mrb, mrb_value self) return result; } -mrb_value class_instance_method_list(mrb_state*, mrb_bool, struct RClass*, int); +mrb_value mrb_class_instance_method_list(mrb_state*, mrb_bool, struct RClass*, int); /* 15.2.2.4.33 */ /* @@ -902,7 +902,7 @@ mrb_mod_instance_methods(mrb_state *mrb, mrb_value mod) struct RClass *c = mrb_class_ptr(mod); mrb_bool recur = TRUE; mrb_get_args(mrb, "|b", &recur); - return class_instance_method_list(mrb, recur, c, 0); + return mrb_class_instance_method_list(mrb, recur, c, 0); } mrb_value mrb_yield_internal(mrb_state *mrb, mrb_value b, int argc, mrb_value *argv, mrb_value self, struct RClass *c); |
