| 3165 | }; |
| 3166 | #endif |
| 3167 | int |
| 3168 | sys_utimes(struct thread *td, struct utimes_args *uap) |
| 3169 | { |
| 3170 | |
| 3171 | return (kern_utimesat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 3172 | uap->tptr, UIO_USERSPACE)); |
| 3173 | } |
| 3174 | |
| 3175 | #ifndef _SYS_SYSPROTO_H_ |
| 3176 | struct futimesat_args { |
nothing calls this directly
no test coverage detected