clox/include/common.h
2024-08-31 12:41:43 -05:00

9 lines
110 B
C

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