| 81 | |
| 82 | #define feReportBug(s) fePrintReportBug(s, __FILE__, __LINE__) |
| 83 | void fePrintReportBug(char* msg, char* file, int line) |
| 84 | { |
| 85 | error("YOU HAVE FOUND A BUG IN SINGULAR.\n" |
| 86 | "Please, email the following output to singular@mathematik.uni-kl.de\n" |
| 87 | "Bug occurred at %s:%d\n" |
| 88 | "Message: %s\n" |
| 89 | "Version: " S_UNAME VERSION VERSION_DATE, |
| 90 | file, line, msg); |
| 91 | |
| 92 | } |
| 93 | |
| 94 | void mainUsage() |
| 95 | { |