Commit 6565504e authored by Yoni Fogel's avatar Yoni Fogel

parent 5e555513
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
//Currently this is a stub implementation just so we can write and compile tests //Currently this is a stub implementation just so we can write and compile tests
//before actually implementing the range tree. //before actually implementing the range tree.
#include "rangetree.h" #include <rangetree.h>
#include <errno.h> #include <errno.h>
#include <assert.h> #include <assert.h>
#include <stdlib.h> #include <stdlib.h>
...@@ -22,7 +22,7 @@ struct __toku_range_tree_local { ...@@ -22,7 +22,7 @@ struct __toku_range_tree_local {
toku_range* ranges; toku_range* ranges;
u_int32_t ranges_len; u_int32_t ranges_len;
}; };
#include "rangetree-internal.h" #include <rangetree-internal.h>
static const u_int32_t minlen = 64; static const u_int32_t minlen = 64;
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
//Currently this is a stub implementation just so we can write and compile tests //Currently this is a stub implementation just so we can write and compile tests
//before actually implementing the range tree. //before actually implementing the range tree.
#include "rangetree.h" #include <rangetree.h>
#include <errno.h> #include <errno.h>
#include <assert.h> #include <assert.h>
#include <stdlib.h> #include <stdlib.h>
...@@ -21,7 +21,9 @@ struct __toku_range_tree_local { ...@@ -21,7 +21,9 @@ struct __toku_range_tree_local {
//Logarithmic non-overlapping version only fields: //Logarithmic non-overlapping version only fields:
toku_rbt* rbt; toku_rbt* rbt;
}; };
#include "rangetree-internal.h" #include <rangetree-internal.h>
#include <tokuredblack.h>
/* /*
Redblack tree. Redblack tree.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment