clox/include/common.h

10 lines
140 B
C
Raw Normal View History

2024-08-31 17:41:43 +00:00
#ifndef CLOX_COMMON
#define CLOX_COMMON
#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
2024-09-02 22:15:41 +00:00
#define DEBUG_TRACE_EXECUTION
2024-08-31 17:41:43 +00:00
#endif