| 449 | |
| 450 | #if defined(COMPAT_FREEBSD6) |
| 451 | int |
| 452 | freebsd6_pwrite(struct thread *td, struct freebsd6_pwrite_args *uap) |
| 453 | { |
| 454 | |
| 455 | return (kern_pwrite(td, uap->fd, uap->buf, uap->nbyte, uap->offset)); |
| 456 | } |
| 457 | #endif |
| 458 | |
| 459 | /* |
nothing calls this directly
no test coverage detected