| 1844 | }; |
| 1845 | #endif |
| 1846 | int |
| 1847 | sys_funlinkat(struct thread *td, struct funlinkat_args *uap) |
| 1848 | { |
| 1849 | |
| 1850 | return (kern_funlinkat_ex(td, uap->dfd, uap->path, uap->fd, uap->flag, |
| 1851 | UIO_USERSPACE, 0)); |
| 1852 | } |
| 1853 | |
| 1854 | int |
| 1855 | kern_funlinkat(struct thread *td, int dfd, const char *path, int fd, |
nothing calls this directly
no test coverage detected