| 343 | void* result = OSAllocFromHeap(the_heap, __size); |
| 344 | |
| 345 | if (result == NULL) |
| 346 | { |
| 347 | null_func(); |
| 348 | } |
| 349 | |
| 350 | return result; |
| 351 | } |
| 352 | |
| 353 | void free(void* __ptr) |
| 354 | { |
| 355 | if (__ptr != NULL) |
| 356 | { |
| 357 | OSFreeToHeap(the_heap, __ptr); |
| 358 | } |
| 359 | } |
| 360 | } |
| 361 | |
| 362 | static void _rwDolphinHeapFree(void* __ptr) |
| 363 | { |
no test coverage detected