| 2045 | }; |
| 2046 | #endif |
| 2047 | int |
| 2048 | sys_access(struct thread *td, struct access_args *uap) |
| 2049 | { |
| 2050 | |
| 2051 | return (kern_accessat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 2052 | 0, uap->amode)); |
| 2053 | } |
| 2054 | |
| 2055 | #ifndef _SYS_SYSPROTO_H_ |
| 2056 | struct faccessat_args { |
nothing calls this directly
no test coverage detected