| 827 | } |
| 828 | |
| 829 | void die(const char *str, ...) |
| 830 | { |
| 831 | va_list ap; |
| 832 | |
| 833 | va_start(ap, str); |
| 834 | vfprintf(stderr, str, ap); |
| 835 | fprintf(stderr, "\n"); |
| 836 | exit(1); |
| 837 | } |
| 838 | |
| 839 | #if defined(WIN32) |
| 840 | #define strcasecmp stricmp |
no outgoing calls
no test coverage detected