| 3254 | }; |
| 3255 | #endif |
| 3256 | int |
| 3257 | sys_futimes(struct thread *td, struct futimes_args *uap) |
| 3258 | { |
| 3259 | |
| 3260 | return (kern_futimes(td, uap->fd, uap->tptr, UIO_USERSPACE)); |
| 3261 | } |
| 3262 | |
| 3263 | int |
| 3264 | kern_futimes(struct thread *td, int fd, struct timeval *tptr, |
nothing calls this directly
no test coverage detected