clox/include/common.h
2024-09-02 17:15:41 -05:00

10 lines
140 B
C

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