| 2821 | }; |
| 2822 | #endif |
| 2823 | int |
| 2824 | sys_chmod(struct thread *td, struct chmod_args *uap) |
| 2825 | { |
| 2826 | |
| 2827 | return (kern_fchmodat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 2828 | uap->mode, 0)); |
| 2829 | } |
| 2830 | |
| 2831 | #ifndef _SYS_SYSPROTO_H_ |
| 2832 | struct fchmodat_args { |
nothing calls this directly
no test coverage detected