| 5 | #include <stdio.h> |
| 6 | |
| 7 | static void status_backtrace_print(const char *fmt, ...) |
| 8 | { |
| 9 | va_list ap; |
| 10 | |
| 11 | va_start(ap, fmt); |
| 12 | status_vfmt(LOG_BROKEN, NULL, fmt, ap); |
| 13 | va_end(ap); |
| 14 | } |
| 15 | |
| 16 | static void status_backtrace_exit(void) |
| 17 | { |
nothing calls this directly
no test coverage detected