| 421 | }; |
| 422 | #endif |
| 423 | int |
| 424 | sys_pwrite(struct thread *td, struct pwrite_args *uap) |
| 425 | { |
| 426 | |
| 427 | return (kern_pwrite(td, uap->fd, uap->buf, uap->nbyte, uap->offset)); |
| 428 | } |
| 429 | |
| 430 | int |
| 431 | kern_pwrite(struct thread *td, int fd, const void *buf, size_t nbyte, |
nothing calls this directly
no test coverage detected