| 80 | #endif /* HAVE_MALLOC_SIZE/HAVE_MALLOC_USABLE_SIZE */ |
| 81 | |
| 82 | void* omAlloc0Large(size_t size) |
| 83 | { |
| 84 | void* addr = omAllocLarge(size); |
| 85 | memset(addr, 0, size); |
| 86 | return addr; |
| 87 | } |
| 88 | |
| 89 | void* omRealloc0Large(void* old_addr, size_t new_size) |
| 90 | { |
nothing calls this directly
no test coverage detected