| 257 | */ |
| 258 | |
| 259 | void * |
| 260 | bootstrap_malloc(size_t size) { |
| 261 | if (unlikely(size == 0)) { |
| 262 | size = 1; |
| 263 | } |
| 264 | |
| 265 | return a0ialloc(size, false, false); |
| 266 | } |
| 267 | |
| 268 | void * |
| 269 | bootstrap_calloc(size_t num, size_t size) { |
nothing calls this directly
no test coverage detected