Files
clox/include/common.h
Daniel Henry 8df0ffb7e5 Finish Chapter 15
Implement a basic VM that is capable of simple math.

Signed-off-by: Daniel Henry <iamdanhenry@gmail.com>
2025-08-21 20:30:02 -05:00

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