| 4274 | // |
| 4275 | |
| 4276 | static void printb(const TEXT* string, ...) |
| 4277 | { |
| 4278 | va_list ptr; |
| 4279 | |
| 4280 | va_start(ptr, string); |
| 4281 | vfprintf(gpreGlob.out_file, string, ptr); |
| 4282 | va_end(ptr); |
| 4283 | } |
| 4284 | #endif |
| 4285 |
nothing calls this directly
no test coverage detected