/* * (C)opyright MMVI Anselm R. Garbe * See LICENSE file for license details. */ #include #include #include void error(char *errstr, ...) { va_list ap; va_start(ap, errstr); vfprintf(stderr, errstr, ap); va_end(ap); exit(1); }