MCPcopy Create free account
hub / github.com/boostorg/build / err_printf

Function err_printf

src/engine/output.c:84–99  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

82 }
83}
84void err_printf(char const * const f, ...)
85{
86 {
87 va_list args;
88 va_start( args, f );
89 vfprintf( bjam_err, f, args );
90 va_end( args );
91 }
92 if ( globs.out )
93 {
94 va_list args;
95 va_start( args, f );
96 vfprintf( globs.out, f, args );
97 va_end( args );
98 }
99}
100
101
102void out_action

Callers 13

hcache_initFunction · 0.85
make1bFunction · 0.85
exec_waitFunction · 0.85
get_free_cmdtab_slotFunction · 0.85
regmatchFunction · 0.85
prepare_command_fileFunction · 0.85
get_free_cmdtab_slotFunction · 0.85
argument_compiler_addFunction · 0.85
arg_compile_implFunction · 0.85
function_runFunction · 0.85
call_python_functionFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected