From 42ac28d44ac7e1f102e9ba37fa91923e822e47df Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Mon, 23 Oct 2023 04:30:50 +0100 Subject: Make root directory an include path, set #include's properly Easier to write includes now just using < with the module name, in comparison to using relative paths. --- vm/inst.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vm/inst.h') diff --git a/vm/inst.h b/vm/inst.h index 5882e4f..935f722 100644 --- a/vm/inst.h +++ b/vm/inst.h @@ -16,8 +16,8 @@ #include #include -#include "../lib/base.h" -#include "../lib/darr.h" +#include +#include typedef enum { -- cgit v1.2.3-13-gbd6f