| 55 | static ACL_ALLOCATOR *__var_allocator = NULL; |
| 56 | |
| 57 | static void *mempool_malloc(const char *filename, int line, size_t size) |
| 58 | { |
| 59 | return (acl_allocator_membuf_alloc(filename, line, __var_allocator, size)); |
| 60 | } |
| 61 | |
| 62 | static void *mempool_calloc(const char *filename, int line, size_t nmemb, size_t size) |
| 63 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…