| 3470 | } |
| 3471 | |
| 3472 | extern inline RPMALLOC_ALLOCATOR void* |
| 3473 | rpmalloc_heap_calloc(rpmalloc_heap_t* heap, size_t num, size_t size) { |
| 3474 | return rpmalloc_heap_aligned_calloc(heap, 0, num, size); |
| 3475 | } |
| 3476 | |
| 3477 | extern inline RPMALLOC_ALLOCATOR void* |
| 3478 | rpmalloc_heap_aligned_calloc(rpmalloc_heap_t* heap, size_t alignment, size_t num, size_t size) { |
nothing calls this directly
no test coverage detected