| 1476 | }; |
| 1477 | #endif |
| 1478 | int |
| 1479 | sys_link(struct thread *td, struct link_args *uap) |
| 1480 | { |
| 1481 | |
| 1482 | return (kern_linkat(td, AT_FDCWD, AT_FDCWD, uap->path, uap->link, |
| 1483 | UIO_USERSPACE, FOLLOW)); |
| 1484 | } |
| 1485 | |
| 1486 | #ifndef _SYS_SYSPROTO_H_ |
| 1487 | struct linkat_args { |
nothing calls this directly
no test coverage detected