/* $Id: dief.c 616 2005-08-19 20:11:01Z bruce $ */ #include #include "msg.h" void msg_dief(int code, int showsys, const char* format, ...) { va_list ap; va_start(ap, format); msg_commonfv("Fatal", showsys, format, ap); exit(code); va_end(ap); }