| 2948 | }; |
| 2949 | #endif |
| 2950 | int |
| 2951 | sys_chown(struct thread *td, struct chown_args *uap) |
| 2952 | { |
| 2953 | |
| 2954 | return (kern_fchownat(td, AT_FDCWD, uap->path, UIO_USERSPACE, uap->uid, |
| 2955 | uap->gid, 0)); |
| 2956 | } |
| 2957 | |
| 2958 | #ifndef _SYS_SYSPROTO_H_ |
| 2959 | struct fchownat_args { |
nothing calls this directly
no test coverage detected