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. --- examples/fib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/fib.c') diff --git a/examples/fib.c b/examples/fib.c index 17a9ef8..c059ff9 100644 --- a/examples/fib.c +++ b/examples/fib.c @@ -15,8 +15,8 @@ #include #include -#include "../vm/inst.h" -#include "../vm/runtime.h" +#include +#include int main(void) { -- cgit v1.2.3-13-gbd6f