| 620 | }; |
| 621 | #endif |
| 622 | int |
| 623 | sys_ftruncate(struct thread *td, struct ftruncate_args *uap) |
| 624 | { |
| 625 | |
| 626 | return (kern_ftruncate(td, uap->fd, uap->length)); |
| 627 | } |
| 628 | |
| 629 | #if defined(COMPAT_43) |
| 630 | #ifndef _SYS_SYSPROTO_H_ |
nothing calls this directly
no test coverage detected