MCPcopy Index your code
hub / github.com/git/git / die_builtin

Function die_builtin

usage.c:82–88  ·  view source on GitHub ↗

* We call trace2_cmd_error_va() in the below functions first and * expect it to va_copy 'params' before using it (because an 'ap' can * only be walked once). */

Source from the content-addressed store, hash-verified

80 * only be walked once).
81 */
82static NORETURN void die_builtin(const char *err, va_list params)
83{
84 report_fn die_message_fn = get_die_message_routine();
85
86 die_message_fn(err, params);
87 exit(128);
88}
89
90static void error_builtin(const char *err, va_list params)
91{

Callers

nothing calls this directly

Calls 1

get_die_message_routineFunction · 0.85

Tested by

no test coverage detected