aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/common.h
blob: 6dd187a59e9858aa4d1d1a9c1718ee407c7e0561 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef clox_common_h
#define clox_common_h

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>

#define DEBUG_PRINT_CODE
#define DEBUG_TRACE_EXECUTION

#define DEBUG_STRESS_GC
#define DEBUG_LOG_GC

#define UINT8_COUNT (UINT8_MAX + 1)

#endif