| 1650 | }; |
| 1651 | #endif |
| 1652 | int |
| 1653 | sys_symlink(struct thread *td, struct symlink_args *uap) |
| 1654 | { |
| 1655 | |
| 1656 | return (kern_symlinkat(td, uap->path, AT_FDCWD, uap->link, |
| 1657 | UIO_USERSPACE)); |
| 1658 | } |
| 1659 | |
| 1660 | #ifndef _SYS_SYSPROTO_H_ |
| 1661 | struct symlinkat_args { |
nothing calls this directly
no test coverage detected