add picconf.h

This commit is contained in:
Yuichi Nishiwaki 2013-10-15 09:05:44 +09:00
parent fea6b7f633
commit 60ed971dd9
2 changed files with 14 additions and 0 deletions

13
include/picconf.h Normal file
View File

@ -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

View File

@ -4,6 +4,7 @@
#include <stddef.h>
#include <stdbool.h>
#include "picconf.h"
#include "picrin/value.h"
struct pic_env {