aboutsummaryrefslogtreecommitdiff
path: root/examples/fib.c
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2023-10-23 04:30:50 +0100
committerAryadev Chavali <aryadev@aryadevchavali.com>2023-10-23 04:46:09 +0100
commit42ac28d44ac7e1f102e9ba37fa91923e822e47df (patch)
treed400f2af604ff37453f7d8e357b368e63ff74f78 /examples/fib.c
parent0ac634a9bec04934398a431bfc1b9a7a27561f0c (diff)
downloadovm-42ac28d44ac7e1f102e9ba37fa91923e822e47df.tar.gz
ovm-42ac28d44ac7e1f102e9ba37fa91923e822e47df.tar.bz2
ovm-42ac28d44ac7e1f102e9ba37fa91923e822e47df.zip
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.
Diffstat (limited to 'examples/fib.c')
-rw-r--r--examples/fib.c4
1 files changed, 2 insertions, 2 deletions
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 <stdio.h>
#include <string.h>
-#include "../vm/inst.h"
-#include "../vm/runtime.h"
+#include <vm/inst.h>
+#include <vm/runtime.h>
int main(void)
{