| 263 | */ |
| 264 | |
| 265 | void * |
| 266 | bootstrap_malloc(size_t size) { |
| 267 | if (unlikely(size == 0)) { |
| 268 | size = 1; |
| 269 | } |
| 270 | |
| 271 | return a0ialloc(size, false, false); |
| 272 | } |
| 273 | |
| 274 | void * |
| 275 | bootstrap_calloc(size_t num, size_t size) { |
nothing calls this directly
no test coverage detected