| 3180 | }; |
| 3181 | #endif |
| 3182 | int |
| 3183 | sys_futimesat(struct thread *td, struct futimesat_args *uap) |
| 3184 | { |
| 3185 | |
| 3186 | return (kern_utimesat(td, uap->fd, uap->path, UIO_USERSPACE, |
| 3187 | uap->times, UIO_USERSPACE)); |
| 3188 | } |
| 3189 | |
| 3190 | int |
| 3191 | kern_utimesat(struct thread *td, int fd, const char *path, |
nothing calls this directly
no test coverage detected