remove unused #include

This commit is contained in:
Yukihiro Matsumoto
2012-05-11 10:26:50 +09:00
parent affb5cb7c2
commit 3483e360ed
2 changed files with 2 additions and 6 deletions
+2
View File
@@ -269,7 +269,9 @@ typedef struct mrb_state {
mrb_sym symidx;
struct kh_n2s *name2sym; /* symbol table */
struct kh_s2n *sym2name; /* reverse symbol table */
#ifdef INCLUDE_REGEXP
struct RNode *local_svar;/* regexp */
#endif
struct RClass *eException_class;
struct RClass *eStandardError_class;
-6
View File
@@ -16,12 +16,6 @@
#include "mruby/variable.h"
#include <stdio.h>
#ifdef INCLUDE_REGEXP
#include "re.h"
#include "regex.h"
#include "st.h"
#endif
/* ------------------------------------------------------ */
KHASH_MAP_INIT_INT(s2n, const char*);
KHASH_MAP_INIT_STR(n2s, mrb_sym);