From 60ed971dd9385cef36dba3865fc67f3f9b7bab9f Mon Sep 17 00:00:00 2001 From: Yuichi Nishiwaki Date: Tue, 15 Oct 2013 09:05:44 +0900 Subject: [PATCH] add picconf.h --- include/picconf.h | 13 +++++++++++++ include/picrin.h | 1 + 2 files changed, 14 insertions(+) create mode 100644 include/picconf.h diff --git a/include/picconf.h b/include/picconf.h new file mode 100644 index 00000000..8ed33f66 --- /dev/null +++ b/include/picconf.h @@ -0,0 +1,13 @@ +#ifndef PICCONF_H__ +#define PICCONF_H__ + +#define DEBUG 1 + +#if DEBUG +# define GC_DEBUG 1 +# define VM_DEBUG 1 +#endif + + +#endif + diff --git a/include/picrin.h b/include/picrin.h index 3435ee77..7e3a71a9 100644 --- a/include/picrin.h +++ b/include/picrin.h @@ -4,6 +4,7 @@ #include #include +#include "picconf.h" #include "picrin/value.h" struct pic_env {