| 3147 | } |
| 3148 | |
| 3149 | extern RPMALLOC_ALLOCATOR void* |
| 3150 | rpaligned_alloc(size_t alignment, size_t size) { |
| 3151 | heap_t* heap = get_thread_heap(); |
| 3152 | return _rpmalloc_aligned_allocate(heap, alignment, size); |
| 3153 | } |
| 3154 | |
| 3155 | extern inline RPMALLOC_ALLOCATOR void* |
| 3156 | rpaligned_calloc(size_t alignment, size_t num, size_t size) { |
no test coverage detected