MCPcopy Create free account
hub / github.com/ading2210/linuxpdf / fatal_error

Function fatal_error

tinyemu/fs_net.c:2046–2055  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2044/* FS init from network */
2045
2046static void __attribute__((format(printf, 1, 2))) fatal_error(const char *fmt, ...)
2047{
2048 va_list ap;
2049 va_start(ap, fmt);
2050 fprintf(stderr, "Error: ");
2051 vfprintf(stderr, fmt, ap);
2052 fprintf(stderr, "\n");
2053 va_end(ap);
2054 exit(1);
2055}
2056
2057static void fs_create_cmd(FSDevice *fs)
2058{

Callers 2

head_loadedFunction · 0.85
filelist_loadedFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected