aboutsummaryrefslogtreecommitdiffstats
path: root/clox/src/common.h
blob: ddab69972cb8fc00d4ee40cac0bcf0728c05422b (plain)
1
2
3
4
5
6
7
8
9
10
#ifndef clox_common_h
#define clox_common_h

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

#define DEBUG_TRACE_EXECUTION

#endif