| 1144 | } |
| 1145 | |
| 1146 | void log(const char * fmt, ...) { |
| 1147 | va_list args; |
| 1148 | va_start(args, fmt); |
| 1149 | vfprintf(out, fmt, args); |
| 1150 | va_end(args); |
| 1151 | } |
| 1152 | |
| 1153 | void error(const char * fmt, ...) { |
| 1154 | va_list args; |
no outgoing calls
no test coverage detected