mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
rename mrb_open_without_mrbgems to mrb_open_core
This commit is contained in:
committed by
Yukihiro "Matz" Matsumoto
parent
36813c87f6
commit
baca365caa
+1
-1
@@ -296,7 +296,7 @@ mrb_value mrb_str_new_static(mrb_state *mrb, const char *p, size_t len);
|
||||
|
||||
mrb_state* mrb_open(void);
|
||||
mrb_state* mrb_open_allocf(mrb_allocf, void *ud);
|
||||
mrb_state* mrb_open_without_mrbgems(mrb_allocf, void *ud);
|
||||
mrb_state* mrb_open_core(mrb_allocf, void *ud);
|
||||
void mrb_close(mrb_state*);
|
||||
|
||||
void* mrb_default_allocf(mrb_state*, void*, size_t, void*);
|
||||
|
||||
+1
-1
@@ -123,7 +123,7 @@ mrb_open_allocf(mrb_allocf f, void *ud)
|
||||
}
|
||||
|
||||
mrb_state*
|
||||
mrb_open_without_mrbgems(mrb_allocf f, void *ud)
|
||||
mrb_open_core(mrb_allocf f, void *ud)
|
||||
{
|
||||
return mrb_open_common(f, ud, FALSE);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user