| 74 | GGUF_TYPE_INT64 = 11, |
| 75 | GGUF_TYPE_FLOAT64 = 12, |
| 76 | } gguf_value_type; |
| 77 | |
| 78 | static void die(const char *msg) { |
| 79 | fprintf(stderr, "error: %s\n", msg); |
| 80 | exit(1); |
| 81 | } |
| 82 | |
| 83 | static void die_errno(const char *what, const char *path) { |
no test coverage detected