| 1828 | }; |
| 1829 | #endif |
| 1830 | int |
| 1831 | sys_unlinkat(struct thread *td, struct unlinkat_args *uap) |
| 1832 | { |
| 1833 | |
| 1834 | return (kern_funlinkat_ex(td, uap->fd, uap->path, FD_NONE, uap->flag, |
| 1835 | UIO_USERSPACE, 0)); |
| 1836 | } |
| 1837 | |
| 1838 | #ifndef _SYS_SYSPROTO_H_ |
| 1839 | struct funlinkat_args { |
nothing calls this directly
no test coverage detected