aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/common.h
blob: 25fc22f518be2fe5a0dac2eea0c57d49b37c8ff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
#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

#endif