| 433 | } |
| 434 | |
| 435 | void |
| 436 | bufoff(int fd) |
| 437 | { |
| 438 | int idx = getidx(fd, NOFLG); |
| 439 | |
| 440 | if (idx >= 0) { |
| 441 | bflush(fd); |
| 442 | bw_buffered[idx] = 0; /* just a flag that says "use write(fd)" */ |
| 443 | } |
| 444 | } |
| 445 | |
| 446 | void |
| 447 | bclose(int fd) |
no test coverage detected