// ********** // ERRORS.CPP // ********** #include #include #include #include "errors.h" void Error(const char *msg, ...) { char buffer[150]; va_list ap; va_start(ap, msg); vsprintf(buffer, msg, ap); cout<