MCPcopy Create free account
hub / github.com/emscripten-core/emscripten / fatal_error

Function fatal_error

test/sqlite/speedtest1.c:74–80  ·  view source on GitHub ↗

Print an error message and exit */

Source from the content-addressed store, hash-verified

72
73/* Print an error message and exit */
74static void fatal_error(const char *zMsg, ...){
75 va_list ap;
76 va_start(ap, zMsg);
77 vfprintf(stderr, zMsg, ap);
78 va_end(ap);
79 exit(1);
80}
81
82/*
83** Return the value of a hexadecimal digit. Return -1 if the input

Callers 6

integerValueFunction · 0.85
speedtest1_execFunction · 0.85
speedtest1_prepareFunction · 0.85
testset_rtreeFunction · 0.85
mainFunction · 0.85
parse_flagMethod · 0.85

Calls 2

vfprintfFunction · 0.85
exitFunction · 0.50

Tested by

no test coverage detected