| 3286 | } |
| 3287 | |
| 3288 | int |
| 3289 | sys_futimens(struct thread *td, struct futimens_args *uap) |
| 3290 | { |
| 3291 | |
| 3292 | return (kern_futimens(td, uap->fd, uap->times, UIO_USERSPACE)); |
| 3293 | } |
| 3294 | |
| 3295 | int |
| 3296 | kern_futimens(struct thread *td, int fd, struct timespec *tptr, |
nothing calls this directly
no test coverage detected