| 398 | } |
| 399 | |
| 400 | void* fxNewLinkerChunk(txLinker* linker, txSize size) |
| 401 | { |
| 402 | txLinkerChunk* block = c_malloc(sizeof(txLinkerChunk) + size); |
| 403 | mxThrowElse(block); |
| 404 | block->nextChunk = linker->firstChunk; |
| 405 | linker->firstChunk = block; |
| 406 | return block + 1; |
| 407 | } |
| 408 | |
| 409 | void* fxNewLinkerChunkClear(txLinker* linker, txSize size) |
| 410 | { |
no outgoing calls
no test coverage detected