| 247 | |
| 248 | #if defined(COMPAT_FREEBSD6) |
| 249 | int |
| 250 | freebsd6_pread(struct thread *td, struct freebsd6_pread_args *uap) |
| 251 | { |
| 252 | |
| 253 | return (kern_pread(td, uap->fd, uap->buf, uap->nbyte, uap->offset)); |
| 254 | } |
| 255 | #endif |
| 256 | |
| 257 | /* |
nothing calls this directly
no test coverage detected