| 66 | if ( globs.out ) out_( s, globs.out ); |
| 67 | } |
| 68 | void out_printf(char const * const f, ...) |
| 69 | { |
| 70 | { |
| 71 | va_list args; |
| 72 | va_start( args, f ); |
| 73 | vfprintf( bjam_out, f, args ); |
| 74 | va_end( args ); |
| 75 | } |
| 76 | if ( globs.out ) |
| 77 | { |
| 78 | va_list args; |
| 79 | va_start( args, f ); |
| 80 | vfprintf( globs.out, f, args ); |
| 81 | va_end( args ); |
| 82 | } |
| 83 | } |
| 84 | void err_printf(char const * const f, ...) |
| 85 | { |
| 86 | { |
no outgoing calls
no test coverage detected