inline configuration

This commit is contained in:
Yuichi Nishiwaki 2014-09-15 16:42:57 +09:00
parent 1e29ad51a0
commit 9eb938ff87
2 changed files with 3 additions and 8 deletions

View File

@ -1,7 +0,0 @@
/* configurations for Picrin interpreter */
#define PIC_ARENA_SIZE (8 * 1024)
#define PIC_HEAP_PAGE_SIZE (2 * 1024 * 1024)
#define PIC_SYM_POOL_SIZE (2 * 1024)

View File

@ -2,7 +2,9 @@
* See Copyright Notice in picrin.h
*/
#include "config.h"
#define PIC_ARENA_SIZE (8 * 1024)
#define PIC_HEAP_PAGE_SIZE (2 * 1024 * 1024)
#define PIC_SYM_POOL_SIZE (2 * 1024)
#include "picrin.h"
#include "picrin/pair.h"