clox/include/common.h
2024-09-08 15:57:08 -05:00

12 lines
166 B
C

#ifndef CLOX_COMMON
#define CLOX_COMMON
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#define DEBUG_PRINT_CODE
#define DEBUG_TRACE_EXECUTION
#endif