| 4111 | // |
| 4112 | |
| 4113 | static void printb(const TEXT* string, ...) |
| 4114 | { |
| 4115 | va_list ptr; |
| 4116 | |
| 4117 | va_start(ptr, string); |
| 4118 | vfprintf(gpreGlob.out_file, string, ptr); |
| 4119 | va_end(ptr); |
| 4120 | } |
| 4121 | #endif |
| 4122 | |
| 4123 | //____________________________________________________________ |
nothing calls this directly
no test coverage detected