| 5548 | tree_destroy(NULL, n, free_node); |
| 5549 | } |
| 5550 | static void pool_tdestroy(struct malloc_pool_s *pool, const void *root, |
| 5551 | void (*free_node)(void *)) |
| 5552 | { |
| 5553 | struct node_s *n = (struct node_s *)root; |
| 5554 | tree_destroy(pool, n, free_node); |
| 5555 | } |
| 5556 | |
| 5557 | static void *tnext(void *node) |
| 5558 | { |
nothing calls this directly
no test coverage detected