woops forgot to fix some wrong imports

This commit is contained in:
2026-05-27 06:54:59 +10:00
parent 74f2546c69
commit c89e225f8e
3 changed files with 3 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
#define OPERAND_H
#include <stdint.h>
#include <stdbool.h>
typedef struct {
char name[32];

View File

@@ -4,7 +4,7 @@
#include <argp.h>
#include <stdbool.h>
#include <stdlib.h>
#include "../include/error.h"
#include "../lib/error.h"
typedef struct {
char* filePath;

View File

@@ -1,6 +1,6 @@
#include "vm.h"
#include "args.h"
#include "../include/ansi.h"
#include "../lib/ansi.h"
#define VERSION_NUMBER "0.1.0"