| 2061 | } |
| 2062 | #endif |
| 2063 | int |
| 2064 | sys_faccessat(struct thread *td, struct faccessat_args *uap) |
| 2065 | { |
| 2066 | |
| 2067 | return (kern_accessat(td, uap->fd, uap->path, UIO_USERSPACE, uap->flag, |
| 2068 | uap->amode)); |
| 2069 | } |
| 2070 | |
| 2071 | int |
| 2072 | kern_accessat(struct thread *td, int fd, const char *path, |
nothing calls this directly
no test coverage detected