| 36 | |
| 37 | #if defined(__unix__) || (defined(__APPLE__) && defined(__MACH__)) || defined(_WIN32) |
| 38 | [[noreturn]] static void sigint_handler(int) { |
| 39 | printf("\n" LOG_COL_DEFAULT); |
| 40 | exit(0); // not ideal, but it's the only way to guarantee exit in all cases |
| 41 | } |
| 42 | #endif |
| 43 | |
| 44 | GGML_ATTRIBUTE_FORMAT(1, 2) |
no test coverage detected