From 8b367098ac493cc458f731cc780070ffb103f2f4 Mon Sep 17 00:00:00 2001 From: Yukihiro Matsumoto Date: Tue, 24 Apr 2012 17:41:28 +0900 Subject: move header files {irep,dump,cdump,ritehash}.h to /include/mruby --- src/irep.h | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 src/irep.h (limited to 'src/irep.h') diff --git a/src/irep.h b/src/irep.h deleted file mode 100644 index b3f9e8d87..000000000 --- a/src/irep.h +++ /dev/null @@ -1,29 +0,0 @@ -/* -** irep.h - mrb_irep structure -** -** See Copyright Notice in mruby.h -*/ - -#ifndef MRUBY_IREP_H -#define MRUBY_IREP_H - -typedef struct mrb_irep { - int idx; - - int flags; - int nlocals; - int nregs; - - mrb_code *iseq; - mrb_value *pool; - mrb_sym *syms; - - int ilen, plen, slen; -} mrb_irep; - -#define MRB_IREP_NOFREE 3 -#define MRB_ISEQ_NOFREE 1 - -void mrb_add_irep(mrb_state *mrb, int n); - -#endif /* MRUBY_IREP_H */ -- cgit v1.2.3