mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
12 lines
158 B
C
12 lines
158 B
C
#include <mruby.h>
|
|
#include <mruby/irep.h>
|
|
|
|
extern const uint8_t mrblib_irep[];
|
|
|
|
void
|
|
mrb_init_mrblib(mrb_state *mrb)
|
|
{
|
|
mrb_load_irep(mrb, mrblib_irep);
|
|
}
|
|
|