clox/common.h
2019-06-02 14:58:15 -05:00

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