| 3320 | } |
| 3321 | |
| 3322 | int |
| 3323 | sys_utimensat(struct thread *td, struct utimensat_args *uap) |
| 3324 | { |
| 3325 | |
| 3326 | return (kern_utimensat(td, uap->fd, uap->path, UIO_USERSPACE, |
| 3327 | uap->times, UIO_USERSPACE, uap->flag)); |
| 3328 | } |
| 3329 | |
| 3330 | int |
| 3331 | kern_utimensat(struct thread *td, int fd, const char *path, |
nothing calls this directly
no test coverage detected