1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#include "err.h" #include <curses.h> #include <stdarg.h> #include <stdio.h> #include <stdlib.h> #include "log.h" void die(const char *err, ...) { va_list p; va_start(p, err); log_write(LOG_ERR, err, p); va_end(p); endwin(); exit(128); }