Use mrb_open_core() instead of mrb_open() in mrbc

This commit is contained in:
KOBAYASHI Shuji
2021-01-31 22:37:27 +09:00
parent 406159d412
commit 1fc8e00e4a
+1 -1
View File
@@ -271,7 +271,7 @@ dump_file(mrb_state *mrb, FILE *wfp, const char *outfile, struct RProc *proc, st
int
main(int argc, char **argv)
{
mrb_state *mrb = mrb_open();
mrb_state *mrb = mrb_open_core(NULL, NULL);
int n, result;
struct mrbc_args args;
FILE *wfp;