clox/common.h

12 lines
170 B
C
Raw Normal View History

2019-06-02 14:58:15 -05:00
#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