| 1665 | }; |
| 1666 | #endif |
| 1667 | int |
| 1668 | sys_symlinkat(struct thread *td, struct symlinkat_args *uap) |
| 1669 | { |
| 1670 | |
| 1671 | return (kern_symlinkat(td, uap->path1, uap->fd, uap->path2, |
| 1672 | UIO_USERSPACE)); |
| 1673 | } |
| 1674 | |
| 1675 | int |
| 1676 | kern_symlinkat(struct thread *td, const char *path1, int fd, const char *path2, |
nothing calls this directly
no test coverage detected