| 24 | _hc_release(m, hc_unique(malloc_m), p) |
| 25 | |
| 26 | struct hc_malloc { |
| 27 | void *(*acquire)(struct hc_malloc *, size_t); |
| 28 | void (*release)(struct hc_malloc *, void *); |
| 29 | }; |
| 30 | |
| 31 | extern struct hc_malloc hc_malloc_default; |
| 32 |
nothing calls this directly
no outgoing calls
no test coverage detected