summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--include/mrbconf.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/include/mrbconf.h b/include/mrbconf.h
index 0113136d6..c4cf23017 100644
--- a/include/mrbconf.h
+++ b/include/mrbconf.h
@@ -13,6 +13,12 @@
/* add -DMRB_USE_FLOAT to use float instead of double for floating point numbers */
//#define MRB_USE_FLOAT
+/* initial size of khash table bucket; should be power of 2 (n >= 8) */
+//#define MRB_INITIAL_HASH_SIZE 32
+
+/* argv max size in mrb_funcall */
+//#define MRB_FUNCALL_ARGC_MAX 16
+
/* -DDISABLE_XXXX to drop the feature */
#define DISABLE_REGEXP /* regular expression classes */
//#define DISABLE_SPRINTF /* Kernel.sprintf method */
@@ -21,8 +27,6 @@
//#define DISABLE_STRUCT /* Struct class */
//#define DISABLE_STDIO /* use of stdio */
-//#define MRB_FUNCALL_ARGC_MAX 16 /* argv size in mrb_funcall */
-
#undef HAVE_UNISTD_H /* WINDOWS */
#define HAVE_UNISTD_H /* LINUX */