| 580 | #endif /* !SFCTOOL */ |
| 581 | |
| 582 | int |
| 583 | nhclose(int fd) |
| 584 | { |
| 585 | int retval = 0; |
| 586 | |
| 587 | if (fd >= 0) { |
| 588 | if (close_check(fd)) |
| 589 | bclose(fd); |
| 590 | else |
| 591 | retval = close(fd); |
| 592 | } |
| 593 | return retval; |
| 594 | } |
| 595 | |
| 596 | /* ---------- BEGIN LEVEL FILE HANDLING ----------- */ |
| 597 |
no test coverage detected