| 2561 | }; |
| 2562 | #endif |
| 2563 | int |
| 2564 | sys_readlink(struct thread *td, struct readlink_args *uap) |
| 2565 | { |
| 2566 | |
| 2567 | return (kern_readlinkat(td, AT_FDCWD, uap->path, UIO_USERSPACE, |
| 2568 | uap->buf, UIO_USERSPACE, uap->count)); |
| 2569 | } |
| 2570 | #ifndef _SYS_SYSPROTO_H_ |
| 2571 | struct readlinkat_args { |
| 2572 | int fd; |
nothing calls this directly
no test coverage detected