| 164 | } |
| 165 | |
| 166 | void fxCheckModGlobal(txLinker* linker, txString name, txString key) |
| 167 | { |
| 168 | if (fxIsLinkerSymbolStringUsed(linker, key)) { |
| 169 | fprintf(stderr, "### warning: strip %s: unavailable global: %s\n", name, key); |
| 170 | linker->warningCount++; |
| 171 | } |
| 172 | } |
| 173 | |
| 174 | txFlag fxIsLinkerSymbolStringUsed(txLinker* linker, txString theString) |
| 175 | { |
no test coverage detected