12 lines
170 B
C
12 lines
170 B
C
#ifndef clox_common_h
|
|
#define clox_common_h
|
|
|
|
#include <stdbool.h>
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#define DEBUG_TRACE_EXECUTION
|
|
#define DEBUG_PRINT_CODE
|
|
|
|
#endif
|