summaryrefslogtreecommitdiffhomepage
path: root/src/kernel.c
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-06-15 08:36:24 +0900
committerYukihiro Matsumoto <[email protected]>2012-06-15 08:36:24 +0900
commit93cabfc18b87d404e98aace2098174372a9afd58 (patch)
tree3110670b06dc7ef69ec4b6dfc2c6d7144bb60366 /src/kernel.c
parent040b57fae5ab001fdb04271131dbe33a713170d8 (diff)
parentf093ed69aec7a3640484bffbaa01b5e453495406 (diff)
downloadmruby-93cabfc18b87d404e98aace2098174372a9afd58.tar.gz
mruby-93cabfc18b87d404e98aace2098174372a9afd58.zip
Merge branch 'master' of github.com:mruby/mruby
Diffstat (limited to 'src/kernel.c')
-rw-r--r--src/kernel.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/kernel.c b/src/kernel.c
index 4856af7ad..6dfe6be19 100644
--- a/src/kernel.c
+++ b/src/kernel.c
@@ -34,22 +34,9 @@ typedef enum {
NOEX_RESPONDS = 0x80
} mrb_method_flag_t;
-#ifdef INCLUDE_REGEXP
-#include "re.h"
-#include "regint.h"
-#endif
-
KHASH_INIT(mt, mrb_sym, struct RProc*, 1, kh_int_hash_func, kh_int_hash_equal)
KHASH_INIT(iv, mrb_sym, mrb_value, 1, kh_int_hash_func, kh_int_hash_equal)
-#ifndef FALSE
-#define FALSE 0
-#endif
-
-#ifndef TRUE
-#define TRUE 1
-#endif
-
struct obj_ivar_tag {
mrb_value obj;
int (*func)(mrb_sym key, mrb_value val, void * arg);