| 3218 | }; |
| 3219 | #endif |
| 3220 | int |
| 3221 | sys_lutimes(struct thread *td, struct lutimes_args *uap) |
| 3222 | { |
| 3223 | |
| 3224 | return (kern_lutimes(td, uap->path, UIO_USERSPACE, uap->tptr, |
| 3225 | UIO_USERSPACE)); |
| 3226 | } |
| 3227 | |
| 3228 | int |
| 3229 | kern_lutimes(struct thread *td, const char *path, enum uio_seg pathseg, |
nothing calls this directly
no test coverage detected