| 2125 | }; |
| 2126 | #endif |
| 2127 | int |
| 2128 | sys_eaccess(struct thread *td, struct eaccess_args *uap) |
| 2129 | { |
| 2130 | |
| 2131 | return (kern_accessat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 2132 | AT_EACCESS, uap->amode)); |
| 2133 | } |
| 2134 | |
| 2135 | #if defined(COMPAT_43) |
| 2136 | /* |
nothing calls this directly
no test coverage detected