diff options
author | Daan Leijen <daan@microsoft.com> | 2021-06-06 20:31:36 -0700 |
---|---|---|
committer | Daan Leijen <daan@microsoft.com> | 2021-06-06 20:31:36 -0700 |
commit | 1feb6123d90f5557a0fc1bc2afc72401e58f8cb0 (patch) | |
tree | 70909bcfdb5593fe23fa121fa870e1a79ffd4fea /src/bitmap.c | |
parent | e2c095fad2a1d506712be0b22616f97cc927c05b (diff) |
make all includes relative
Diffstat (limited to 'src/bitmap.c')
-rw-r--r-- | src/bitmap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bitmap.c b/src/bitmap.c index 3b5c819..8c835bd 100644 --- a/src/bitmap.c +++ b/src/bitmap.c @@ -17,8 +17,8 @@ The `_across` postfixed functions do allow sequences that can cross over between the fields. (This is used in arena allocation) ---------------------------------------------------------------------------- */ -#include "mimalloc.h" -#include "mimalloc-internal.h" +#include "../include/mimalloc.h" +#include "../include/mimalloc-internal.h" #include "bitmap.h" /* ----------------------------------------------------------- |