| 13 | extern volatile OSTime __OSLastInterruptTime; |
| 14 | |
| 15 | __declspec(weak) void OSReport(const char* msg, ...) |
| 16 | { |
| 17 | va_list args; |
| 18 | va_start(args, msg); |
| 19 | vprintf(msg, args); |
| 20 | va_end(args); |
| 21 | } |
| 22 | |
| 23 | __declspec(weak) void OSPanic(const char* file, int line, const char* msg, ...) |
| 24 | { |
no test coverage detected