X-Git-Url: http://git.efficios.com/?a=blobdiff_plain;f=lib%2Fprio_heap%2Fprio_heap.c;h=97a69ac4b86293ee4b1d989948be23e5a45fd66c;hb=68b66a256a54d32992dfefeaad11eea88b7df234;hp=8942a113aec50038fe20f59c6bbf84756a2d780d;hpb=dd06413f0a5c638a20f000f3046755ee229c821d;p=babeltrace.git diff --git a/lib/prio_heap/prio_heap.c b/lib/prio_heap/prio_heap.c index 8942a113..97a69ac4 100644 --- a/lib/prio_heap/prio_heap.c +++ b/lib/prio_heap/prio_heap.c @@ -1,6 +1,4 @@ /* - * prio_heap.c - * * Static-sized priority heap containing pointers. Based on CLRS, * chapter 6. * @@ -25,17 +23,12 @@ * SOFTWARE. */ -#include -#include +#include +#include +#include #include #include #include -#include - -#ifndef max_t -#define max_t(type, a, b) \ - ((type) (a) > (type) (b) ? (type) (a) : (type) (b)) -#endif #ifdef DEBUG_HEAP void check_heap(const struct ptr_heap *heap) @@ -46,7 +39,7 @@ void check_heap(const struct ptr_heap *heap) return; for (i = 1; i < heap->len; i++) - assert(!heap->gt(heap->ptrs[i], heap->ptrs[0])); + BT_ASSERT(!heap->gt(heap->ptrs[i], heap->ptrs[0])); } #endif