#ifndef VM_INCLUDED #define VM_INLCUDED #include "chunk.h" typedef struct { Chunk *chunk; } VM; void initVM(); void freeVM(); #endif