| 5470 | return NULL; |
| 5471 | } |
| 5472 | static void *pool_tfind(struct malloc_pool_s *pool, const void *key, |
| 5473 | void **root, int (*compare)(const void *, const void *)) |
| 5474 | { |
| 5475 | return tfind(key, root, compare); |
| 5476 | } |
| 5477 | |
| 5478 | static void *pool_tdelete(struct malloc_pool_s *pool, const void *key, |
| 5479 | void **root, int (*compare)(const void *, const void *)) |