summaryrefslogtreecommitdiffhomepage
path: root/src/init.c
diff options
context:
space:
mode:
authorYukihiro Matz Matsumoto <[email protected]>2013-03-01 21:38:02 +0900
committerYukihiro Matz Matsumoto <[email protected]>2013-03-01 21:38:02 +0900
commit8d2880bbfe229b7c8df327be2d046820cce07838 (patch)
treee0a3d61fd34cfd01fd6db13468d10be5dd9dcfc9 /src/init.c
parentc0e1fc935c301dd86705d754bcf8493c5200eaf9 (diff)
parent99a6de063cc4c4964074b27ad21553043b468368 (diff)
downloadmruby-8d2880bbfe229b7c8df327be2d046820cce07838.tar.gz
mruby-8d2880bbfe229b7c8df327be2d046820cce07838.zip
Merge branch 'pluggable_struct' of https://github.com/mattn/mruby into mattn-pluggable_struct
Diffstat (limited to 'src/init.c')
-rw-r--r--src/init.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/init.c b/src/init.c
index fa2d5d305..0d1a24881 100644
--- a/src/init.c
+++ b/src/init.c
@@ -20,7 +20,6 @@ void mrb_init_array(mrb_state*);
void mrb_init_hash(mrb_state*);
void mrb_init_numeric(mrb_state*);
void mrb_init_range(mrb_state*);
-void mrb_init_struct(mrb_state*);
void mrb_init_gc(mrb_state*);
void mrb_init_print(mrb_state*);
void mrb_init_math(mrb_state*);
@@ -48,9 +47,6 @@ mrb_init_core(mrb_state *mrb)
mrb_init_hash(mrb); DONE;
mrb_init_numeric(mrb); DONE;
mrb_init_range(mrb); DONE;
-#ifdef ENABLE_STRUCT
- mrb_init_struct(mrb); DONE;
-#endif
mrb_init_gc(mrb); DONE;
#ifdef ENABLE_STDIO
mrb_init_print(mrb); DONE;