diff options
author | David Goldblatt <davidgoldblatt@fb.com> | 2017-04-11 00:03:25 (GMT) |
---|---|---|
committer | David Goldblatt <davidtgoldblatt@gmail.com> | 2017-04-11 18:52:30 (GMT) |
commit | 63a5cd4cc2a4812adc7f3a8bd3ea0633115b151e (patch) | |
tree | a3e11962697410181749539b89ee711d2dbec169 /test/unit | |
parent | 2f00ce4da7b1c360a9b1129ebcdb087da562e2d4 (diff) | |
download | jemalloc-63a5cd4cc2a4812adc7f3a8bd3ea0633115b151e.zip jemalloc-63a5cd4cc2a4812adc7f3a8bd3ea0633115b151e.tar.gz jemalloc-63a5cd4cc2a4812adc7f3a8bd3ea0633115b151e.tar.bz2 |
Header refactoring: break out rb.h dependencies
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/rb.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/unit/rb.c b/test/unit/rb.c index 0bcc3c3..65c0492 100644 --- a/test/unit/rb.c +++ b/test/unit/rb.c @@ -1,5 +1,7 @@ #include "test/jemalloc_test.h" +#include "jemalloc/internal/rb.h" + #define rbtn_black_height(a_type, a_field, a_rbt, r_height) do { \ a_type *rbp_bh_t; \ for (rbp_bh_t = (a_rbt)->rbt_root, (r_height) = 0; rbp_bh_t != \ |