Add `-internal` suffix to all internal header files
[babeltrace.git] / lib / prio_heap / prio_heap.c
index 8942a113aec50038fe20f59c6bbf84756a2d780d..cd7098ff045bf09256297d341cb1a1d027dcff1c 100644 (file)
  * SOFTWARE.
  */
 
-#include <babeltrace/prio_heap.h>
+#include <babeltrace/prio-heap-internal.h>
 #include <babeltrace/babeltrace-internal.h>
 #include <errno.h>
 #include <stdlib.h>
 #include <string.h>
 #include <assert.h>
 
-#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)
 {
This page took 0.024645 seconds and 4 git commands to generate.