Versions with the pad argument */
| 3444 | #if defined(COMPAT_FREEBSD6) |
| 3445 | /* Versions with the pad argument */ |
| 3446 | int |
| 3447 | freebsd6_truncate(struct thread *td, struct freebsd6_truncate_args *uap) |
| 3448 | { |
| 3449 | |
| 3450 | return (kern_truncate(td, uap->path, UIO_USERSPACE, uap->length)); |
| 3451 | } |
| 3452 | |
| 3453 | int |
| 3454 | freebsd6_ftruncate(struct thread *td, struct freebsd6_ftruncate_args *uap) |
nothing calls this directly
no test coverage detected