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/segment.c | |
parent | e2c095fad2a1d506712be0b22616f97cc927c05b (diff) |
make all includes relative
Diffstat (limited to 'src/segment.c')
-rw-r--r-- | src/segment.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/segment.c b/src/segment.c index 1d59be9..77f6aa4 100644 --- a/src/segment.c +++ b/src/segment.c @@ -4,9 +4,9 @@ This is free software; you can redistribute it and/or modify it under the terms of the MIT license. A copy of the license can be found in the file "LICENSE" at the root of this distribution. -----------------------------------------------------------------------------*/ -#include "mimalloc.h" -#include "mimalloc-internal.h" -#include "mimalloc-atomic.h" +#include "../include/mimalloc.h" +#include "../include/mimalloc-internal.h" +#include "../include/mimalloc-atomic.h" #include <string.h> // memset #include <stdio.h> |