diff options
Diffstat (limited to 'test/btree_test.c')
-rw-r--r-- | test/btree_test.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/test/btree_test.c b/test/btree_test.c index 8257add..93a257f 100644 --- a/test/btree_test.c +++ b/test/btree_test.c @@ -14,12 +14,16 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include <limits.h> +#include "zix/btree.h" + +#include "test_malloc.h" + +#include <stdbool.h> +#include <assert.h> #include <stdarg.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> -#include <time.h> #ifdef _MSC_VER # define PRIdPTR "Id" @@ -27,9 +31,6 @@ # include <inttypes.h> #endif -#include "test_malloc.h" -#include "zix/zix.h" - static bool expect_failure = false; // Return a pseudo-pseudo-pseudo-random-ish integer with no duplicates |