Fixed file

This commit is contained in:
Randy Jordan 2024-09-01 17:46:27 -05:00
parent c983f166c8
commit 82651b9779
No known key found for this signature in database
GPG Key ID: BF8CCF4CDDE47493
2 changed files with 0 additions and 17 deletions

View File

@ -1,14 +0,0 @@
#ifndef VM_INCLUDED
#define VM_INLCUDED
#include "chunk.h"
typedef struct {
Chunk *chunk;
} VM;
void initVM();
void freeVM();
#endif

View File

@ -2,12 +2,9 @@
#include "../include/vm.h"
VM vm;
void initVM(void){
}
void freeVM(void){
}