lox/clox/common.h

11 lines
145 B
C

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