| 91 | } |
| 92 | |
| 93 | void fxReportError(txString theFormat, ...) |
| 94 | { |
| 95 | c_va_list arguments; |
| 96 | fprintf(stderr, "# "); |
| 97 | c_va_start(arguments, theFormat); |
| 98 | vfprintf(stderr, theFormat, arguments); |
| 99 | c_va_end(arguments); |
| 100 | fprintf(stderr, "\n"); |
| 101 | exit(1); |
| 102 | } |
| 103 | |
| 104 | int main(int argc, char* argv[]) |
| 105 | { |