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.
This commit is contained in:
2023-10-23 04:30:50 +01:00
parent 0ac634a9be
commit 42ac28d44a
5 changed files with 11 additions and 9 deletions

View File

@@ -16,8 +16,8 @@
#include <stdio.h>
#include <stdlib.h>
#include "../lib/base.h"
#include "../lib/darr.h"
#include <lib/base.h>
#include <lib/darr.h>
typedef enum
{

View File

@@ -16,7 +16,6 @@
#include <stdio.h>
#include <stdlib.h>
#include "../lib/base.h"
#include "./inst.h"
typedef enum