| 5 | #include "malloc1.h" |
| 6 | |
| 7 | static void *default_acquire(struct hc_malloc *m, size_t size) { |
| 8 | return malloc(size); |
| 9 | } |
| 10 | |
| 11 | static void default_release(struct hc_malloc *m, void *p) { |
| 12 | free(p); |
nothing calls this directly
no outgoing calls
no test coverage detected