//======================================================================== // // Error.cc // // Copyright 1996 Derek B. Noonburg // //======================================================================== #ifdef __GNUC__ #pragma implementation #endif #include #include #include #include "gtypes.h" #include "Params.h" #include "Error.h" // Send error messages to /dev/tty instead of stderr. GBool errorsToTTY = gFalse; // File to send error (and other) messages to. FILE *errFile; void errorInit() { if (!errorsToTTY || !(errFile = fopen("/dev/tty", "w"))) errFile = stderr; } void CDECL error(int pos, char *msg, ...) { va_list args; if (printCommands) fflush(stdout); if (pos >= 0) fprintf(errFile, "Error (%d): ", pos); else fprintf(errFile, "Error: "); va_start(args, msg); vfprintf(errFile, msg, args); va_end(args); fprintf(errFile, "\n"); fflush(errFile); }