12 lines
166 B
C
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
|