| 174 | enet_uint32 servtime = 0; |
| 175 | |
| 176 | void fatal(const char *fmt, ...) |
| 177 | { |
| 178 | va_list args; |
| 179 | va_start(args, fmt); |
| 180 | vfprintf(logfile, fmt, args); |
| 181 | fputc('\n', logfile); |
| 182 | va_end(args); |
| 183 | exit(EXIT_FAILURE); |
| 184 | } |
| 185 | |
| 186 | void conoutfv(const char *fmt, va_list args) |
| 187 | { |
no outgoing calls
no test coverage detected