| 493 | staticfn |
| 494 | #endif |
| 495 | NHFILE * |
| 496 | new_nhfile(void) |
| 497 | { |
| 498 | NHFILE *nhfp = (NHFILE *) alloc(sizeof *nhfp); |
| 499 | |
| 500 | memset((genericptr_t) nhfp, 0, sizeof *nhfp); |
| 501 | init_nhfile(nhfp); |
| 502 | return nhfp; |
| 503 | } |
| 504 | |
| 505 | #ifndef SFCTOOL |
| 506 | staticfn |
no test coverage detected