| 265 | #ifndef SFCTOOL |
| 266 | #if 0 |
| 267 | staticfn void |
| 268 | Fread(genericptr_t ptr, int size, int nitems, dlb *stream) |
| 269 | { |
| 270 | int cnt; |
| 271 | |
| 272 | if ((cnt = dlb_fread(ptr, size, nitems, stream)) != nitems) { |
| 273 | panic( |
| 274 | "Premature EOF on dungeon description file!\r\nExpected %d bytes - got %d.", |
| 275 | (size * nitems), (size * cnt)); |
| 276 | nh_terminate(EXIT_FAILURE); |
| 277 | } |
| 278 | } |
| 279 | #endif |
| 280 | |
| 281 | DISABLE_WARNING_UNREACHABLE_CODE |
nothing calls this directly
no test coverage detected