mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
17 lines
247 B
C
17 lines
247 B
C
/*
|
|
** init_ext.c - initialize extend libraries
|
|
**
|
|
** See Copyright Notice in mruby.h
|
|
*/
|
|
|
|
#include "mruby.h"
|
|
|
|
void
|
|
mrb_init_ext(mrb_state *mrb)
|
|
{
|
|
#ifdef INCLUDE_SOCKET
|
|
extern void mrb_init_socket(mrb_state *mrb);
|
|
mrb_init_socket(mrb);
|
|
#endif
|
|
}
|