| 4343 | // |
| 4344 | |
| 4345 | static void printb(const TEXT* string, ...) |
| 4346 | { |
| 4347 | va_list ptr; |
| 4348 | |
| 4349 | va_start(ptr, string); |
| 4350 | vfprintf(gpreGlob.out_file, string, ptr); |
| 4351 | va_end(ptr); |
| 4352 | } |
| 4353 | #endif |
| 4354 | |
| 4355 | //____________________________________________________________ |
nothing calls this directly
no test coverage detected