mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
aa655b9ee1
- reduce compile time by a little bit (full-core: ~0.7s for me) - thanks to 'include-what-you-use' for some help - include Standard C header files before any other (coding style)
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);
|
|
}
|
|
|