| 407 | } |
| 408 | |
| 409 | void* fxNewLinkerChunkClear(txLinker* linker, txSize size) |
| 410 | { |
| 411 | void* result = fxNewLinkerChunk(linker, size); |
| 412 | c_memset(result, 0, size); |
| 413 | return result; |
| 414 | } |
| 415 | |
| 416 | txLinkerInclude* fxNewLinkerInclude(txLinker* linker, txString path) |
| 417 | { |
no test coverage detected