| 1799 | }; |
| 1800 | #endif |
| 1801 | int |
| 1802 | sys_unlink(struct thread *td, struct unlink_args *uap) |
| 1803 | { |
| 1804 | |
| 1805 | return (kern_funlinkat(td, AT_FDCWD, uap->path, FD_NONE, UIO_USERSPACE, |
| 1806 | 0, 0)); |
| 1807 | } |
| 1808 | |
| 1809 | static int |
| 1810 | kern_funlinkat_ex(struct thread *td, int dfd, const char *path, int fd, |
nothing calls this directly
no test coverage detected