| 2576 | }; |
| 2577 | #endif |
| 2578 | int |
| 2579 | sys_readlinkat(struct thread *td, struct readlinkat_args *uap) |
| 2580 | { |
| 2581 | |
| 2582 | return (kern_readlinkat(td, uap->fd, uap->path, UIO_USERSPACE, |
| 2583 | uap->buf, UIO_USERSPACE, uap->bufsize)); |
| 2584 | } |
| 2585 | |
| 2586 | int |
| 2587 | kern_readlinkat(struct thread *td, int fd, const char *path, |
nothing calls this directly
no test coverage detected